KODUMUZ :
<html>
<script>
/*
By Richard Morris (Email: ram( at )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
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// Ingilizce
if (lang == "en")
window.location.replace('ingilizce.html')
// Almanca
else if (lang == "de")
window.location.replace('turkce.html')
// Turkce
else if (lang == "tr")
window.location.replace('turkce.html')
// eger yazdiklarinizdan degilse nereye yonlenecek
else
window.location.replace('turk.html')
</script>
<html>
alıntıdır...... |