if (document.getElementsByTagName)
{
	var CartStyle = "items|total";
	if (GetCookie("Cart"))
	{
		var cart = unescape(GetCookie("Cart"));
		if ( cart && cart != "")
		{
			var elems = cart.split("^");
			var items = elems[0].split("|");

			if (CartStyle.indexOf("count") > -1)
			{
				document.write("There " + (parseInt(elems[1])>1 ? "are " : "is ") + elems[1] + " item" + (parseInt(elems[1])>1 ? "s" : "") + " in your cart.<br>");
			}

			if (CartStyle.indexOf("items") > -1 )
			{
				for (i = 0; i < items.length; i++ )
				{
					document.write(items[i] + "<br>");
				}
				document.write("<br>");
			}

			if (CartStyle.indexOf("total") > -1)
			{
				document.write("Total: $" + FormatNumber(elems[2],2) + ".<br>");
			}
		}
		else
			document.write("<center>Your cart is empty</center>");
	}
	else
		document.write("<center>Your cart is empty</center>");
}
