function updateTopBasket()
	{
		var sWrite = "";
		myCookie = GetCookie("bsCart");

		
		if (myCookie)
		{
			var quantity = 0;
			var temp = myCookie.split("::");
			var len = temp.length;
			if (len > 1)
			{
				// looping through each combination of information in the array.
				for (i = 0; i < len; i ++)
				{
					// extracting information into another array by splitting the combination on ':' seperator.
					temp1 = temp[i].split(":");
					if (temp1.length > 1)
					{
						// multiplying the price and quantity.
						quantity += parseInt(temp1[2]);
					}
				}
			}
		}
		if (quantity)
		{
		     sWrite = ('<a href="default.asp?id=20&mnu=20" title="Gå til kurv"><img src="/images/basketicon.png" border="0" alt="Der er varer i kurven" /></a>');
		}
		else
		{
			sWrite = (' ');
		}

		if (window.parent.document.getElementById("divSmlBasket").innerHTML != null)
		{
			window.parent.document.getElementById("divSmlBasket").innerHTML = sWrite;
		}
		else
		{
			document.getElementById("divSmlBasket").innerHTML = sWrite;
		}  
	}
	
		updateTopBasket();
		
		
	
