/**
 * @author Till
 */
function languageSwitch(target) {
	if (window.navigator.language) {
		var language = window.navigator.language;
		if (language == 'de') {
			window.location.href = target+'_de.html';
		}
		else {
			alert('Jetzt wirds UNdeutsch');
			window.location.href = target+'.html';
		}
	}
	else {
		var language = navigator.browserLanguage;
		if (language == 'de') {
			window.location.href = 'formula_de.html';
		}
		else {
			window.location.href = 'formula.html';
		}	
	}
	
}