function Fensterhoehe()
	{
	if (window.innerHeight) return window.innerHeight;
	else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
	else return 0;
	}

function neuAufbau()
	{
	if (Hoehe != Fensterhoehe())
	window.history.go(0);
	}

function Body(Hoehe)
	{	
	document.write('<style type="text/css">');
	document.write('body');
	document.write('{');
	document.write('background-color:#EFF0F6;');
	document.write('background-image:url(bg.gif);');
	document.write('background-repeat:repeat-x;');
	document.write('background-position:100px ' + (Hoehe*0.534) +'px;');
	document.write('margin:0px;');
	document.write('}');
	document.write('</style>');
	}

function flashen()
  {    
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="' + (Hoehe*1.33) + '" HEIGHT="' + (Hoehe) + '" id="test2" ALIGN=""><PARAM NAME=movie VALUE="main.swf"> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=exactfit> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#999999> <EMBED src="main.swf" menu=false quality=high scale=exactfit wmode=transparent bgcolor=#999999  WIDTH="' + (Hoehe*1.33) + '" HEIGHT="' + Hoehe + '" NAME="Studiofilm.de" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
  }

/*Überwachung von Netscape initialisieren*/
if(!window.Weite && window.innerWidth)
	{
	window.onresize = neuAufbau;
	Hoehe = Fensterhoehe();
	}
	
Hoehe = Fensterhoehe();
