var xmlHttp;
var div_id;

//-----------------------------------------------------------------
function getresult(str_text,model_id,price_id,price1,price2,make_id,manufacturers_id)
{   
    div_id = str_text;
	//alert('hi');
	//alert('str_text='+str_text+','+'cat_id='+cat_id+','+'make_id='+make_id+','+'model_id='+model_id+','+'spec_id='+spec_id+','+'from_year='+from_year+','+'to_year='+to_year+','+'year_id='+year_id);
		
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
  	{
  		alert ("Your browser does not support AJAX!");
  		return;
  	}
	//alert(str_text);
	if (str_text == 'ajaxContent') {
		
		var url="index.php?main_page=search_locator_result&ajax=true"+"&div="+str_text+"&model_id="+model_id+"&price_id="+price_id+"&price1"+price1+"&price2"+price2+"&make_id="+make_id+"&manufacturers_id="+manufacturers_id;	
		
	} else {
		
		var url="display_option.php?div="+str_text+"&model_id="+model_id+"&price_id="+price_id+"&make_id="+make_id+"&manufacturers_id="+manufacturers_id;	
	}
	
	xmlHttp.onreadystatechange=stateChanged2;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateChanged2() 
{ 
	if (xmlHttp.readyState==4)
	{  
		document.getElementById(div_id).innerHTML=xmlHttp.responseText;		  
	}
}


//-----------------------------------------------------------------
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
   xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
     xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
     xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
//-----------------------------------------------------------------
