// JavaScript Document
function initAjax1()
{
	
  if(!getHTTP())
  {
	return false;  
  }
  else
  {
	
    url1 = "count_user.php";
    //hr.onreadystatechange = chatfunction;
	hr.open('GET',url1,true);
	hr.send(null);
  }
}
function chatfunction()
{
	if(hr.readyState == 4 && hr.status == 200)
	{
	alert(hr.responseText);
	}
	
}

