window.onerror = Fehlerbehandlung;

function Fehlerbehandlung (Nachricht, Datei, Zeile) {
  return true;
}



/*
function correctLayout() {
	
	var boxes = new Array("contentBoxA","contentBoxB","navigationBox1","navigationBox2");
	var maxHeight=0;
	
	for ( i in boxes )
		{
		var tempBox=boxes[i];
		if (document.getElementById(tempBox))
			{
			if (document.getElementById(tempBox).offsetHeight > maxHeight)
				{
					maxHeight=document.getElementById(tempBox).offsetHeight;
				}	
			}
		}
	if (maxHeight<585)
		{
		maxHeight=585;	
		}
	for ( i in boxes )
		{		
		var tempBox=boxes[i];
		document.getElementById(tempBox).style.height =maxHeight+"px";
	}
}
*/

