<script>
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)
// italian
if (lang == "it")
window.location.replace('giris4.html')
// english
if (lang == "en")
window.location.replace('giris4-eng.html')
// french
if (lang == "fr")
window.location.replace('giris4.html')
// german
else if (lang == "de")
window.location.replace('giris4.html')
// turkish
else if (lang == "tr")
window.location.replace('giriss.html')
// spanish (add or remove copies of 2 lines below as needed)
else if (lang == "es")
window.location.replace('giris4.html')
// if none of above (default to English or any other)
else
window.location.replace('giris4.html')
</script>