function onResizeAction(){	/* �berwachung von Internet Explorer initialisieren */	if (!window.Weite && document.body && document.body.offsetWidth) {		window.onresize = neuAufbau;	}		var size = getWinSize();	var Hoehe = size.height;	var Weite = size.width;		HoeheMother = Hoehe;	mother = '<style type="text/css">#mother {height:' + HoeheMother + 'px;} </style> ';	document.write(mother);		HoeheMaincontainer = Hoehe -225;	maincontainer = '<style type="text/css">#maincontainer {height:' + HoeheMaincontainer + 'px;} </style> ';	document.write(maincontainer);}function neuAufbau () {	location.href = location.href;}function getWinSize(win){    if(!win) win = window;    var s = new Object();    if(typeof win.innerWidth != 'undefined'){        s.width = win.innerWidth;        s.height = win.innerHeight;    }    else {         var obj = window.document.body;         s.width = parseInt(obj.clientWidth);         s.height = parseInt(obj.clientHeight);    }    return s;}function popupWindow(url, name, links, oben, hoehe, breite) {	if(!links)  links = 10;	if(!oben) 	 oben = 10;	if(!hoehe) 	hoehe = 480;	if(!breite)	breite = 350;			popup = window.open(url , name , "height="+hoehe+",width="+breite+" ,status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);	popup.focus(); } var s1;function playme(url) {    s1 = new SWFObject('/flash/player.swf','player','400','300','9');    s1.addParam('allowfullscreen','true');    s1.addParam('allowscriptaccess','always');    s1.addParam('flashvars','file=' + url);    s1.write('myplayer');    document.getElementById("playerdiv").style.display = "block";}
