// JavaScript Document
function adjustlayout()
{
	

	//var name = navigator.appName;
	//alert ("jetzt"+name+"hier");
	//if (name == "Netscape"){
	//document.write("<"+"style type='text/css'>#footer{visibility:visible;}<"+"/style>");
	//}
	//if (name == "Microsoft Internet Explorer")
	//{
	//xWidth ("mastcontent", 1000);
	



	// Ermittle die tatsächliche Höhe
	var dHeight = xHeight ("navBar");
	var cHeight = xHeight ("content");
	var lHeight = xHeight ("mastcontent");
	
	//alert ("jetzt"+lHeight+"hier");
	var fTop = xTop ("footer");
	
	//ermittle den größten Höhenwert
	var maxHeight = Math.max(cHeight,dHeight);
	
	//weise den größten Wert allen Spalten zu
	xHeight("mastcontent", maxHeight);
	//xHeight ("content", cHeight);
	xTop ("footer", maxHeight + 200);
	//fTop = 
	// zeige den footer
	xShow ("footer");
	}
	
	window.onload = function()
	{
		xAddEventListener (window, "resize",adjustlayout,false);
		adjustlayout();
		}
