// JavaScript Document

//var xmlHttp

function LoadModelsHome()
{ 
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
	  alert ("Your browser does not support AJAX!");
	  return;
	}

	var url="ajax/loadmodelshome.php";
	url=url+"?sid="+Math.random();
	
	xmlHttp.onreadystatechange = function() {
		
		if ((xmlHttp.readyState==1) || (xmlHttp.readyState==2) || (xmlHttp.readyState==3)) {
			document.getElementById("modelshomebox").innerHTML="<img src='./include/loading-gallery.png' width='920' height='95' />";
		} else if (xmlHttp.readyState==4) {
			document.getElementById("modelshomebox").innerHTML=xmlHttp.responseText;
		}
	
	}
	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);

}
