function showEnglish(){
	if (navigator.appVersion.indexOf("MSIE") != -1 && !window.opera && navigator.appVersion.indexOf("Mac") == -1) {
        window.document.getElementById("english").style.setAttribute('display','block','false');
         window.document.getElementById("deutsch").style.setAttribute('display','none','false');
    } else {
       document.getElementById("english").style.display='block';
		document.getElementById("deutsch").style.display='none';
    }
}

function showDeutsch(){
	if (navigator.appVersion.indexOf("MSIE") != -1 && !window.opera && navigator.appVersion.indexOf("Mac") == -1) {
        window.document.getElementById("deutsch").style.setAttribute('display','block','false');
         window.document.getElementById("english").style.setAttribute('display','none','false');
    } else {
       document.getElementById("english").style.display='none';
		document.getElementById("deutsch").style.display='block';
    }
}
