function adjustLayout()
{
	var cHeight = xHeight("content");
	//var lHeight = 0//xHeight("lb_pic")+210;
	var lHeight = xHeight("right")+210;	
	var rHeight = xHeight("left")+210;
	
	//alert(lHeight+", left "+rHeight);
	
	var maxHeight = Math.max(cHeight, Math.max(lHeight, rHeight));
	
	xHeight("content", maxHeight);
	
	xShow("footer");
}


function loadCaptcha (bild, id) {
 	var hutziwutzi = new Image()
 	captcha.src = bild+'?time=' + new Date().getTime();
 	var neuesbild = document.getElementById(id);
 	neuesbild.src = captcha.src;
}