/*
Copyright OMM - www.omm.ch
*/
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)

// german
if (lang == "de")
window.location.replace('d/index.html')

// french (add or remove copies of 2 lines below as needed)
else if (lang == "fr")
window.location.replace('f/index.html')


// italian (add or remove copies of 2 lines below as needed)
else if (lang == "it")
window.location.replace('it/index.html')

// if none of above (default to English or any other)
else
window.location.replace('f/index.html')

