function optimizeSize(theLayer) {
	var hmargin = 180 + 44;
	var vmargin = 90 + 70;
	if (document.all) {
			var x = document.body.clientWidth - hmargin;
			var y = document.body.clientHeight - vmargin;
			// für den IE muss man hier den gewünschten Layer hardcoden!
			document.all.contentLayer.style.setAttribute("width", x ,"true");
			document.all.contentLayer.style.setAttribute("height", y ,"true");
//			document.all.contentLayer.style.setAttribute("visibility","visible;","false");
		}
		else
			{
				var x = window.innerWidth - hmargin;
				var y = window.innerHeight - vmargin;
				document.getElementById(theLayer).style.width = x;
				document.getElementById(theLayer).style.height = y;
//				document.getElementById("contentLayer").style.visibility = "visible";
			}
/*	if (imgKarte)
		loadImages(10, 1, 1);

	if (word)
		main(); */
}

function hideContentLayer() {
	if (document.all)
		document.all.contentLayer.style.setAttribute("visibility","hidden","false");
	else
		document.getElementById("contentLayer").style.visibility = "hidden";
}

var wortFenster;

function openText(URI) {
	if (wortFenster != null && !wortFenster.closed) {
		wortFenster.location.href = URI;
		wortFenster.focus();
	} else 
		wortFenster = window.open(URI,"waldi","dependent=yes,"
			+ "left=700,top=150,height=450,width=350,"
			+ "location=no,menubar=no,status=no,toolbar=no,"
			+ "scrollbars=yes,resizeable=yes");
}

