// Browser Language Redirect script
// copyright 3rd January 2006, Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code in this script (with the sole exception
// of the langcodes array entries) is used without any alteration

var langCode = navigator.language || navigator.browserLanguage;
var lang = langCode.toLowerCase(); lang = lang.substr(0,2);
var dest = window.location.href;
if (lang=="fr"){
		dest = "francais/index.php";
		window.location.replace ?window.location.replace(dest) :window.location=dest;
} else {
		dest = "anglais/index.php";
		window.location.replace ?window.location.replace(dest) :window.location=dest;
}
                    