function UserAgent(){
	var IE6 = navigator.userAgent.indexOf("MSIE 6.0");
	if(IE6 >0){
		// Internet Explorer 6 überlisten, da er keine min-height kennt!
		var mobjdiv = document.getElementById('content');
		mobjdiv.style.height="500px";
	}
	
	var MOBILEPHONE = navigator.userAgent.indexOf("Configuration/CLDC-");
	if(MOBILEPHONE >0){
        		location.href="http://www.nvs-schule.ch/index.php?id=118";
	}
}