var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// french
if (lang == "fr")
window.location.replace('index_accueil.htm')
// english
else if (lang == "en")
window.location.replace('english/htm/index.htm')
// italian
else if (lang == "it")
window.location.replace('english/htm/index.htm')
// spanish
else if (lang == "es")
window.location.replace('english/htm/index.htm')
// if none of above (default to English or any other)
else
window.location.replace('english/htm/index.htm')

