//<![CDATA[
var sHispanicLocations="es";
var sEnglishLocations="en";
var sGermanLocations="de";
var sFrenchLocations="fr";
var sItalianLocations="it";
var sArabicLocations="ar";
var sChineseLocations="zh";
var sNavigator=navigator.appName;
var iTimeOut=10;
if (sNavigator.indexOf("Microsoft")>=0) { var sCountryCode=navigator.userLanguage;} else { var sCountryCode=navigator.language; }
//document.write("Navigateur: "+sNavigator+"<br>");
//document.write("Langue: "+sCountryCode+"<br>");
//document.write("Time Out avant redirection: "+iTimeOut+" ms"+"<br>");
//document.write("CARTE DU MONDE"+"<br>");
if(sCountryCode.indexOf(sHispanicLocations)>=0) {
	// Hispanic Visitors would go here
        setTimeout('window.location="http://www.orcieres.com/en/winter/home.html";',iTimeOut);
}else if(sCountryCode.indexOf(sFrenchLocations)>=0) {
	// French Visitors would go here
	setTimeout('window.location="http://www.orcieres.com/fr/hiver/accueil.html";',iTimeOut);
}else if(sCountryCode.indexOf(sEnglishLocations)>=0) {
	// English Visitors would go here
	setTimeout('window.location="http://www.orcieres.com/en/winter/home.html";',iTimeOut);
}else if(sCountryCode.indexOf(sChineseLocations)>=0) {
	// Chinese Visitors would go here
	setTimeout('window.location="http://www.orcieres.com/en/winter/home.html";',iTimeOut);
}else if(sCountryCode.indexOf(sItalianLocations)>=0) {
	// Italian Visitors would go here
	setTimeout('window.location="http://www.orcieres.com/en/winter/home.html";',iTimeOut);
}else  if(sCountryCode.indexOf(sArabicLocations)>=0) {
	// Arab Visitors would go here
	setTimeout('window.location="http://www.orcieres.com/fr/hiver/accueil.html";',iTimeOut);
}
//]]>