// JavaScript Document
function adjustlayout()
{
	
	//var name = navigator.appName;
	//if (name == "Netscape"){
	//xWidth ("mastcontent", 440);
	//}
	//if (name == "Microsoft Internet Explorer")
	//{
	//xWidth ("mastcontent", 1000);
	



	// Ermittle die tatsächliche Höhe
	var cHeight = 300;
	var lHeight = 300;
	
	//alert ("jetzt"+lHeight+"hier");
	var fTop = xTop ("footer");
	
	//ermittle den größten Höhenwert
	//var maxHeight = Math.max(cHeight,lHeight);
	
	//weise den größten Wert allen Spalten zu
	xHeight("mastcontent", cHeight);
	//xHeight ("content", cHeight);
	xTop ("footer", cHeight + 200);
	//fTop = 
	// zeige den footer
	xShow ("footer");
	}
	
	window.onload = function()
	{
		xAddEventListener (window, "resize",adjustlayout,false);
		adjustlayout();
		}
