
/*window.onload = function () {
	if(navigator.userLanguage || navigator.browserLanguage && (window.location.pathname != "/de/" || window.location.pathname != "/en/" || window.location.pathname != "/fr/")){
		if(navigator.userLanguage.indexOf("de") > -1 || navigator.browserLanguage.indexOf("de") > -1) {
			window.location.href = "de/";
			done = 1;
			//document.write('Deutsch');
		} else if(navigator.userLanguage.indexOf("fr") > -1 || navigator.browserLanguage.indexOf("fr") > -1) {
			window.location.href = "fr/";
			done = 1;
			//document.write('Französisch');
		} else {
			window.location.href = "en/";
			done = 1;
			//document.write('English');
		}
	}
}*/

if(navigator.language && (window.location == "http://www.respondi.com/")){
	if(navigator.language.indexOf("de") > -1) {
		window.location.href = "de/";
		done = 1;
		//document.write('Deutsch');
	} else if(navigator.language.indexOf("fr") > -1) {
		window.location.href = "fr/";
		done = 1;
		//document.write('Französisch');
	} else {
		window.location.href = "en/";
		done = 1;
		//document.write('English');
	}
}
/*document.write(window.location.pathname);*/