function person_count(){
  try{
	  $.ajax({
		  type: "POST",
		  url: _Web_Url + "/index.php/web/TractGuest/"
	 });
  }catch(error){}

}

function person_clock(){
	setTimeout("person_clock()",15000);
	person_count();
}
