function ZeigeTransBild(VonBild, ZuBild)
{
		document.all[ZuBild].style.position = "absolute";	
		document.all[ZuBild].style.left = document.all[VonBild].style.left;
		document.all[ZuBild].style.top = document.all[VonBild].style.top;
		document.all[ZuBild].width = document.all[VonBild].width;
		document.all[ZuBild].height = document.all[VonBild].height;
}



function OpenWindow(Link)
{
var Parameter = "toolbar=1,width=350,height=200,directories=0,status=1,scrollbars=1,resizable=1,menubar=1";

	window.open(Link,"",Parameter);
}


function OpenTrailer(Link) {
    var Parameter = "toolbar=0,width=500,height=400,directories=0,status=0,scrollbars=0,resizable=0,menubar=0";

    window.open(Link, "", Parameter);
}


function TransLayer(ZuBild)
{
	document.all[ZuBild].style.position = "absolute";	
	document.all[ZuBild].style.left = 0;
	document.all[ZuBild].style.top = 0;
	document.all[ZuBild].width = window.screen.availWidth;
	document.all[ZuBild].height = window.screen.availHeight;
}

function Bildschirm()
{
	var hoehe = 500;
		hoehe = document.body.clientHeight;
		//alert("Bildschirmhöhe:" + hoehe);
		return hoehe;
}

function ReSizeHaupt()
{
  	//var hoehe = document.getElementById("Fusszeile").height;
  	//document.getElementById("Fusszeile").style.top = Bildschirm()-45;
  	//document.getElementById("Fusszeile").style.left = 150;
}


function ReSizeMenu()
{
  	document.getElementById("MenuBereich").height = Bildschirm();
}

function ReSizeBody()
{
	ReSizeHaupt();
	ReSizeMenu();
}


