if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = navigator.userLanguage;


<!-- Begin
if (language.substr(0,2) == "en")
window.location = "http://www.croatiasun.net/en/"
else if (language.substr(0,2) == "de")
window.location = "http://www.croatiasun.net/de/"
else if (language.substr(0,2) == "sl")
window.location = "http://www.croatiasun.net/sl/"
else if (language.substr(0,2) == "hr")
window.location = "http://www.croatiasun.net/hr/"
else if (language.substr(0,2) == "cs")
window.location = "http://www.croatiasun.net/cs/"
else if (language.substr(0,2) == "hu")
window.location = "http://www.croatiasun.net/hu/"
else if (language.substr(0,2) == "it")
window.location = "http://www.croatiasun.net/it/"
else if (language.substr(0,2) == "fr")
window.location = "http://www.croatiasun.net/fr/"
else
window.self //if none of the above then just stay on page
// End -->


