var xmlHttpDealerlocator;

function initDealerlocator()
{
	xmlHttpDealerlocator=GetXmlHttpObject();

	if (xmlHttpDealerlocator==null)
 	{
  		alert ("Your browser does not support AJAX!");
  		return;
	} 

	var url="/ajax.asp?xsl=ajaxdealerlocator.xsl&zip="+querystring("zip")+"&maxradius="+querystring("maxradius")+"&state="+querystring("state");
	url=url+"&sid="+Math.random();
	xmlHttpDealerlocator.onreadystatechange=stateChangedDealerlocator;
	xmlHttpDealerlocator.open("GET",url,true);
	xmlHttpDealerlocator.send(null);

	addCSS("/css/tier4/dealerlocator/style.css");

} 

function stateChangedDealerlocator() 
{ 
	if (xmlHttpDealerlocator.readyState==4)
	{ 
		document.getElementById("dealerlocatorwidget").innerHTML=xmlHttpDealerlocator.responseText;
	}
}
