/* Pour le besoin du code PHP */
francais="/index.php?choix=histo-acc-fr"; 
anglais="/index.php?choix=histo-acc-an"; 
nom=navigator.appName; 
langue=navigator.language; 
langue1=navigator.browserLanguage;
if (nom=="Microsoft Internet Explorer")
{
if (langue1=="fr")
self.location.href=francais;
else
self.location.href=anglais;
}
else
{
if (langue=="fr")
self.location.href=francais;
else self.location.href=anglais;
}

