// JavaScript Document
function cntEmail(id){
var xmlHttp;
	try{
	 xmlHttp = new XMLHttpRequest(); 
	}catch(e){
	 try{
	    xmlHttp = new ActiveXObject("Mxml2.XMLHTTP");
		}catch(e){
		 try{
		  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		 }catch(e){
		  alert("Your browser does not support Ajax");
		  return false;
		 }
		}
	}
	
	  xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
      	 document.getElementById("mostpopular").innerHTML = xmlHttp.responseText;
        }
      }
xmlHttp.open("GET","http://www.heraldmalaysia.com/gallery/cntEmail.php?id="+id,true);
xmlHttp.send(null);
 }
function cntEmails(id){
var xmlHttp;
	try{
	 xmlHttp = new XMLHttpRequest(); 
	}catch(e){
	 try{
	    xmlHttp = new ActiveXObject("Mxml2.XMLHTTP");
		}catch(e){
		 try{
		  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		 }catch(e){
		  alert("Your browser does not support Ajax");
		  return false;
		 }
		}
	}
	
	  xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
      	 document.getElementById("mostpopulari").innerHTML = xmlHttp.responseText;
        }
      }
xmlHttp.open("GET","http://www.heraldmalaysia.com/gallery/cntEmailnew.php?id="+id,true);
xmlHttp.send(null);
 }
