//////////////////////////////////////////////////////////
// 	Ajax Engine											//
// 	James Fenton										//
//  Copyright 2007 dps Technologies						//
//////////////////////////////////////////////////////////

//Create the xml request object
function getXmlObject(){
	var xmlHttp = null;
	try{
	xmlHttp=new XMLHttpRequest();
	}
	catch (e){
		try{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e){
			xmlHttp=newActiveXObject("Microsoft.XMLHTTP");			
		}	
	}
	return xmlHttp;
}


function writeToDiv(divId,URI){
	
	xmlHttp=getXmlObject();
	if (xmlHttp==null)
	  {
	  alert ("Your browser does not support AJAX!");
	  return;
	  } 
	  xmlHttp.onreadystatechange= function(){
		  document.getElementById(divId).innerHTML= '<div id="loader" style="width:100%; height:100%; text-align:center;"><img src="images/loading.gif" width="24" height="24" border="0" align="center"  vspace="150" /></div>';
		  if(xmlHttp.readyState==4){
			document.getElementById(divId).innerHTML=xmlHttp.responseText;
		}
	  }
	  xmlHttp.open("GET",URI,true);
	  xmlHttp.send(null);
}

