function SetLanguage(newLang){
	var s;
	var i;
	if (newLang == "English") {
       	//alert('newLang == English');
       	window.location.href = "/English" + window.location.pathname;
	}
	if (newLang == "Deutsch") {
		//alert("newLang == Deutsch");
        s = window.location.pathname;
        i = s.indexOf("/", 1);
        s = s.substring(i,s.length);
        window.location.href = s;
 	}
	//alert('new window.location.href = ' + window.location.href);
	return false;
}

