function GetXmlHttpObject1()
{
  var xmlHttp1=null;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp1=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
      }
    }
  return xmlHttp1;
}
// Car Type
function getcartype(strURL)
{
	//alert(strURL);
 xmlHttp4=GetXmlHttpObject1();
 if(xmlHttp4==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 

 xmlHttp4.onreadystatechange=function()
 {
  if(xmlHttp4.readyState==4)
  { 
     //TB_init();
    document.getElementById('cartypediv').innerHTML=xmlHttp4.responseText;
	
	//alert(xmlHttp1.responseText);
  }
 }

 
xmlHttp4.open("GET",strURL,true);  
xmlHttp4.send(null);

}
