Put this in the <head> section of your index.htm file (keep that file blank other than the HTML essentials)
Code:
<SCRIPT language="javascript">
language=navigator.language;
if(language){language=language.substring(0,2);}
else{language="z";}
switch (language){
case "en" :
window.location="english.html";
break;
case "es" :
window.location="spanish.html";
break;
case "de" :
window.location="german.html";
break;
case "fr" :
window.location="french.html";
break;
case "it" :
window.location="italian.html";
break;
case "sv" :
window.location="swedish.html";
break;
case "nl" :
window.location="dutch.html";
break;
default :
window.location="english.html";
}
</SCRIPT>
And then it'll instantly redirect to english.htm, dutch.htm, swedish.htm, italian.htm, german.htm or spanish.htm according to browser language.
cr3ative
Bookmarks