function settopscore(){
	xmlHttp2=GetXmlHttpObject()
	if (xmlHttp2==null) {
	  alert ("Your browser does not support AJAX!");
	  return;
  } 
	var url= "include/top_siteparks.php";
	xmlHttp2.onreadystatechange=topState;
	xmlHttp2.open("GET",url,true);
	xmlHttp2.send(null);
}
function topState() { 
	if (xmlHttp2.readyState==4) { 
		document.getElementById('topscore').innerHTML=xmlHttp2.responseText;
	}
}
