
function test_brouwser(){


var versie = navigator.appversion;
var name = navigator.appname;
var taal = navigator.language;
var nltaal = 'nl';
var frtaal = 'fr'; 
var ned = 'nederlands';
var fra = 'Frans'

if (taal == nltaal){
location.replace('nederlands/index.html');
}
else if (taal == frtaal){
location.replace('francaise/index.html');
}
else {
location.replace('francaise/index.html');
}
}