<html>
<script>
/*
By Richard Morris (Email: ram.ramorris.co.uk)
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
var lang = lang.substr(0,2)
// İngilizce
if (lang == "en")
window.location.replace('ingilizce.html')
// Almanca
else if (lang == "de")
window.location.replace('almanca.html')
// Türkçe
else if (lang == "tr")
window.location.replace('turkce.html')
// Bunlardan biri değilse yönlendirilecek sayfa
else
window.location.replace('diger.html')
</script>
<html>