var xmlHttp_get_all_images;

function get_all_images(record){
	str = record;
	if(!str)return;
	
xmlHttp_get_all_images=GetXmlHttpObject_get_all_images();
if (xmlHttp_get_all_images==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="http://www.oldstockcars.com/lincoln_illinois_62656/get_all_images.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp_get_all_images.onreadystatechange=stateChanged_get_all_images;
xmlHttp_get_all_images.open("GET",url,true);
xmlHttp_get_all_images.send(null);
} 

function stateChanged_get_all_images() 
{ 
if (xmlHttp_get_all_images.readyState==4)
{ 


		if(xmlHttp_get_all_images.responseText == ""){
		document.getElementById("image_container").innerHTML = "No images to display at this time.";
		}else{
		document.getElementById("image_container").innerHTML = xmlHttp_get_all_images.responseText;
		}
}
}


function GetXmlHttpObject_get_all_images()
{
var xmlHttp_get_all_images=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp_get_all_images=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp_get_all_images=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp_get_all_images=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp_get_all_images;
}
