// JavaScript Document

// For cart cookie stored in cart_id

cookie_name = "cart_id";
var yourcart;

function getName() {
    if(document.cookie)
   {
        index = document.cookie.indexOf(cookie_name);
        if (index != -1)
     {
            namestart = (document.cookie.indexOf("=", index) + 1);
            nameend = document.cookie.indexOf(";", index);
            if (nameend == -1) {nameend = document.cookie.length;}
            yourcart = document.cookie.substring(namestart, nameend);
            return yourcart;
           }
        }
	else
	{
		yourcart="";
		return yourcart;
	}
  }

yourcart=getName();

if (yourcart == "cart_id")
  {yourcart = "Nothing_Entered"}

// end cart function


