// Selects the Country combo in the contact pages
function selectCountry()
{
	var str = document.location.toString().toLowerCase();
	var el = document.getElementById('Country');

	if ( str.indexOf( '.ca/en/' ) != -1 )
	{
		// dynacodoor.ca/en web site
		el.selectedIndex=0;
	}
	else if ( str.indexOf( '.ca/fr/' ) != -1 )
	{
		// dynacodoor.ca/fr web site
		el.selectedIndex=2;
	}
	else
	{
		// default dynacodoor.us web site
		el.selectedIndex=0;
	}

}

