<!--	w=screen.width;	h=screen.height;	window.moveTo(0,0);	window.resizeTo(w-40,h-40);	function ebeneAn(sprache,prioritaet) {				if (!prioritaet) {			alt_spr = Argumente();			//alert(alt_spr);					if (alt_spr != "false") {				sprache = alt_spr;			}		}					document.getElementById('deutsch').style.display = 'none';		document.getElementById('english').style.display = 'none';		document.getElementById('francais').style.display = 'none';			document.getElementById(sprache).style.display = 'block';		}	function Argumente() {	   		var arg = new Array();   		var location = window.location.search;   		if (location.length > 0) {      		location = location.substr(1, location.length - 1);            		arg = location.split("&");   		} else {      		arg[0] = false;   		} 		 		    		return arg;		}		//-->
