// Javascript Objekte und Funktionen

function openBild(width, height) {   
// Bildfenster anzeigen
 	if (! width ) width = 680;
	if (! height ) height = 620;
	window.open('/blank.html','bild','location=0,directories=0,menubar=0,resizable=1,toolbar=0,status=1,scrollbars=1,width='+width+',height='+height+',top=0,left=0');
} // openBild


function onBodyLoad() {
// Platzhalter fuer ggf. diverse Aktionen nach dem Laden der Seite
	autoGroesse();
} // onBodyLoad

/*
function autoGroesse() {
// Linke (weise Flaeche) (#left) min. auf Inhalts-Hoehe (#content) vergroessern
	wH = document.body.offsetHeight; //  - 180;
	cH = parseInt(document.getElementById("content").offsetHeight + 150);
	if ( cH > wH ) { wH = cH;	}
	// document.getElementById("left").style.minHeight = wH + 'px';
	document.getElementById("content").style.minHeight = (wH-180) + 'px';
	document.getElementById("left").style.height = wH + 'px';
}// autoGroesse
*/


