// JavaScript Document
function getResult(controlName,controlValue){
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(controlName).innerHTML = xmlHttp.responseText;
		// alert(xmlHttp.responseText);
        }
      }
	 

xmlHttp.open("GET","http://www.heraldmalaysia.com/children/shuffleResult.php?id="+controlName+"&val="+controlValue,true);
xmlHttp.send(null);
 }
// JavaScript Document