

// ----------------------------
// ONLOAD
// ----------------------------

onload = function () {
	if (!window.Weite && document.body && document.body.offsetWidth) {
		Weite = Fensterweite();
		Hoehe = Fensterhoehe();
	}
	
	setDivSize();
	
} // end ONLOAD





// ----------------------------
// ONRESIZE
// ----------------------------

onresize = function () {
	Weite = Fensterweite();
	Hoehe = Fensterhoehe();
	setDivSize();	
} // end RESIZE





// ----------------------------
// SET DIV SIZE
// ----------------------------

function setDivSize () {
	
	var shadow = document.getElementById("shadow");
	var main = document.getElementById("main");
	if (Hoehe > main.offsetHeight) {
		shadow.style.height=Hoehe+"px";
	}
	//var footer = document.getElementById("footer");
	//footer.style.top = parseInt(Hoehe)-parseInt(footer.offsetHeight)+"px";
}