function SetCookie (name,value,expires) 
{
  var dt = new Date();
  var dtt = "";
  dt.setTime(dt.getTime()+expires*24*60*60*1000);
  dtt = dt.toGMTString();
  document.cookie = name+"="+value+";expires="+dtt+";path=/";
}
function getCookie(name) {
        var prefix = name + "="
        var cookieStartIndex = document.cookie.indexOf(prefix)
        if (cookieStartIndex == -1)
                return null
        var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
        if (cookieEndIndex == -1)
                cookieEndIndex = document.cookie.length
        return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}
function deleteCookie(name) {
        if (getCookie(name)) {
                document.cookie = name + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT;path=/"
        }
}
function addProd(t, id)	{
	var n = document.getElementById("p_"+id).value;
	var card = getCookie('Card');
	if(card) card = card + t + id + '@'+n+'#';
	else card = t + id + '@'+n+'#';
	SetCookie ('Card',card,100);
	alert("Выбранный Вами товар в нужном кол-ве добавлен в корзину.")
}
function card(){
	var card = getCookie('Card');
	if(card) document.write('В Вашей корзине есть <br> товары. <a href="/card/">Посмотреть.</a>');
	else document.write('Ваша корзина пуста');
}
function card2(){
	var card = getCookie('Card');
	if(card) document.write('В Вашей корзине есть <br> товары. <a href="/card/">Посмотреть.</a>');
	else document.write('Ваша корзина пуста');
}

