var xmlHttp2
var id
function updateShopingCartTotalPrice()
{
	xmlHttp2=getHTTPObject()
	if (xmlHttp2==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	} 

	var url="shopping-cart/php/updateShopingCartTotalPrice.php"
	url=url+"?stid="+Math.random()
	xmlHttp2.onreadystatechange=changeShopingCartTotalPrice
	xmlHttp2.open("GET",url,true)
	xmlHttp2.send(null)
}

function changeShopingCartTotalPrice() 
{ 
	if (xmlHttp2.readyState==4 || xmlHttp2.readyState=="complete")
	{	
		document.getElementById("headerShopingCartTotalPrice").innerHTML=xmlHttp2.responseText
	} 
} 