function loader()
{
	document.getElementById("product-help").onmouseover = function()
	{
		show('product-hint');
	}
	document.getElementById("product-help").onmouseout = function()
	{
		hide('product-hint');
	}
	// fixed to repair mysterious search box growing issues in netscape
	document.getElementById("location-help").onmouseover = function()
	{
		//hide('default-location', 'none');
		//show('location-hint', 'block');
		show('location-hint');
	}
	document.getElementById("location-help").onmouseout = function()
	{
		//hide('location-hint', 'none');
		//show('default-location', 'block');
		hide('location-hint');
	}
	
	var location = readCookie('dsiLocation');
	if (location != null && location != "")
	{
		document.getElementById("default").checked = true;
		document.getElementById("location").value = location;
	}
}
if(window.addEventListener)
{
	window.addEventListener('load', loader, false);
} 
else if(window.attachEvent)
{
	window.attachEvent('onload', loader);
}