<!--
theData = "";
theName = "cart_quant=";
theCookie = document.cookie+";";
start = theCookie.indexOf(theName);
if(start != -1)
	{
	end = theCookie.indexOf(";",start);
	cart = unescape(theCookie.substring(start+theName.length, end));
}
	if(typeof(cart)=="undefined"){cart = "0";}
		else {cart = cart;}

//-->