function getDataLoad(el,url,id)
{  
	var xmlHttp;
  	try
    {    // Firefox, Opera 8.0+, Safari    
		xmlHttp=new XMLHttpRequest();    }
  	catch (e) {    // Internet Explorer    
		try {
			xmlHttp=new ActiveXObject("Msxml2.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(id).innerHTML = xmlHttp.responseText
        }
		else { 		
		document.getElementById(id).innerHTML= "<div width='100%'  align='center'><div style='border: 1px solid black;background-color: #EFEFEF;padding: 5px;font-family:Arial, Helvetica, sans-serif;font-size:12px;direction:rtl; width:100px;'  align='center' >Loading... <img src='images/loading.gif'/></div></div>" }
	  }
		xmlHttp.open("GET",url,true);
        xmlHttp.send(null);

	return false;  
}
//end from

