window.onload=init;
function init(){
	num_user = document.getElementById('num_user_p_tag');
	$("#header").hide().show(3000);
	showall = document.getElementById('main');
	showall.style.visibility='visible';
	initHTTP();
}

	//********************** Start Amar Site
	
	function initHTTP()
	{
		try
	    {
	    xhr = new XMLHttpRequest();
	    }catch(e)
	      {
	       xhr = new ActiveXObject("Microsoft.XMLHTTP");
	      }  
	  callingServer();
	}
	
	
	//**********************




	function callingServer()
	{
	  currentDate = new Date();
	  param = "currentDate="+currentDate;
	  vserver = "./php/num_see.php";
	  vmethod = "POST";
	  xhr.open(vmethod,vserver);
	  xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	  xhr.onreadystatechange = processingserver;  
	  xhr.send(param);
	}
	
	function processingserver()
	{
	  if(xhr.readyState == 4 && xhr.status == 200)
	  {
	     sres = xhr.responseText;
	     num_user.innerHTML='تعداد کل بازدید : '+sres+' بار';
	  }
	}
	//* End Amar site *************************
	


