var ie4 = falsevar ns4 = falseif (document.all) {	ie4 = true;}if (document.layers) {	ns4 = true;}function showFooter() {	if (ie4) {		document.all.Foot.style.top = document.all.Text.offsetTop + document.all.Text.offsetHeight + 5;		document.all.Foot.style.visibility = "visible";		var rechne = document.all.Foot.offsetTop + document.all.Foot.offsetHeight		document.all.Menu.style.height = rechne - document.all.Menu.offsetTop	}	if (ns4) {		document.LayerFoot.top = document.LayerText.top + document.LayerText.document.height - 5;		document.LayerFoot.visibility = "visible";		document.height = document.LayerFoot.top + 35;		var breit = document.LayerMenu.document.width;		var hoch = document.LayerText.top + document.LayerText.document.height;		document.LayerMenu.resizeTo(breit,hoch);	}}
