// JavaScript Document
function basketlink() {
	index = document.cookie.indexOf("TheBasket");
	countbegin = (document.cookie.indexOf("=", index) + 1);
		countend = document.cookie.indexOf(";", index);
		if (countend == -1) {
				countend = document.cookie.length;
		}
	fulllist = document.cookie.substring(countbegin, countend);
	totprice = 0;
	
	itemlist = 0;
	for (var i = 0; i <= fulllist.length; i++) {
		if (fulllist.substring(i,i+1) == '[') {
			itemstart = i+1;
		} else if (fulllist.substring(i,i+1) == ']') {
			itemend = i;
			thequantity = fulllist.substring(itemstart, itemend);
			itemtotal = 0;
			itemtotal = (eval(theprice*thequantity));
			temptotal = itemtotal * 100;
			totprice = totprice + itemtotal;
			itemlist=itemlist+1;
			var thepriceformatted = itemtotal;
			var thepriceformatted = thepriceformatted.toFixed(2);
			
		} else if (fulllist.substring(i,i+1) == '|') {
			theitemID = fulllist.substring(itemstart, i);
			itemstart = i+1;
		} else if (fulllist.substring(i,i+1) == ',') {
			theitem = fulllist.substring(itemstart, i);
			itemstart = i+1;
		} else if (fulllist.substring(i,i+1) == '#') {
			theprice = fulllist.substring(itemstart, i);
			itemstart = i+1;
		}
	}
	
	if(itemlist>0){
		document.writeln('<ul><li><a href="basket.php" title="My Basket">My Basket</a></li><li><a href="checkout.php" title="Checkout">Checkout</a></li></ul>');
	}
	
}