/*function CallUpdatePageCash(URL){
	SXhttp = getXmlHttp();
	var url = "ajax.php";
	SXhttp.open("POST", url, true);
	SXhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	SXhttp.onreadystatechange = DisplayUpdatePageCashe;
	
	var StrUrl = str_replace("?nocashe", "", URL) ;
	StrUrl = str_replace("&nocashe", "", StrUrl) ;
	
	var Request  = "action=UpdatePageCash&value="+StrUrl;
	SXhttp.send(Request);
}
function DisplayUpdatePageCashe(){
	if (SXhttp.readyState == 4) {
		var response = SXhttp.responseText;
	}
	if (SXhttp.readyState == 1) {
		
	}
}*/
function CallUpdatePageCash(URL){
	var StrUrl = str_replace("?nocashe", "", URL) ;
	StrUrl = str_replace("&nocashe", "", StrUrl) ;
	jQuery.post("ajax.php", {action:"UpdatePageCash", value:StrUrl});
}
