// used to redirect any page to the home page

function directToHome( )
{
	var str = document.location.toString().toLowerCase();

	if ( str.indexOf( '.ca/en/' ) != -1 )
	{
		// dynacodoor.ca/en web site
		document.location.href = "http://www.dynacodoor.ca/en/"
	}
	else if ( str.indexOf( '.ca/fr/' ) != -1 )
	{
		// dynacodoor.ca/fr web site
		document.location.href = "http://www.dynacodoor.ca/fr/"
	}
	else
	{
		// default dynacodoor.us web site
		document.location.href = "http://www.dynacodoor.us"
	}
}

