function addToCart()
{
	document.getElementById("fade").style.visibility="visible";
	document.getElementById("orderwindow").style.display="block";
	object = document.getElementById("orderwindow");
	 object.style.marginLeft = "-" + parseInt(object.offsetWidth / 2) + "px";
  object.style.marginTop = "-" + parseInt(object.offsetHeight / 2) + "px";
  
  	ihtml = "<div class='viewcart'>";
	ihtml += "<div class='viewcart_container'>";
	ihtml += "<div class='product_detail'>";
	ihtml	 += "<div style='margin:0px; padding:0px; float:left; height:100px;'><div style='padding-top:30px; padding-left:110px;'><img src='http://lib.store.yahoo.net/lib/yhst-75126210552718/ajax.gif' ><br>Loading...</div>";
	ihtml += "</div>";
	
	document.getElementById("floating-cart").innerHTML = ihtml;
	left = (screen.width - 970) / 2;

	if(left > 0)
		document.getElementById("floating-cart").style.left = left + "px";
	else
		document.getElementById("floating-cart").style.left = "0px";
	document.getElementById("floating-cart").style.top = "198px";
	document.getElementById("floating-cart").style.display = "";
		
}


