function verify_catalogform()
{
year = document.catalogform.year.selectedIndex;
make = document.catalogform.make.selectedIndex;
yearval = document.catalogform.year.options[year].value;
makeval = document.catalogform.make.options[make].value;
if(yearval == "Select Year" || makeval == "Select Make")
	{
	alert("Please select Year and Make for your search.");
	return 0;
	}
	else
	{
	document.catalogform.submit();
	}
}

var url = window.location.href;
function changePays()
{
	if (url.indexOf("canada") != -1) {
		//alert("Pas Canada");
		window.location.href="http://us.europartsetc.com/"
	}
	if (url.indexOf("us") != -1) {
		//alert("Pas US");
		window.location.href="http://canada.europartsetc.com/"
	}
}