function GetXmlHttpObject(handler)
{   var objXMLHttp=null
	 if (window.XMLHttpRequest)
	 {
		objXMLHttp=new XMLHttpRequest();
	 }
	 else if (window.ActiveXObject)
	 {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	 return objXMLHttp;
}
/////////fior interewst//////////////
function stateChanged_blast()
{
	if (xmlHttp2.readyState==4 || xmlHttp2.readyState=="complete")
	{
		document.getElementById("show_next_hotties").innerHTML='';
		document.getElementById("show_next_hotties").innerHTML=xmlHttp2.responseText;
	}
}
function reFresh(path)
{	
	xmlHttp2=GetXmlHttpObject();
	if (xmlHttp2 == null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=path+"common/hottiesshinyi_change.php"
	xmlHttp2.onreadystatechange=stateChanged_blast; 
	xmlHttp2.open("GET",url,true) ;
	xmlHttp2.send(null);
	return;
}
