<!--//--><![CDATA[//><!--

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;



function GalleryopenWindow(strPageToLoad)
{

	// OPEN WINDOW Platzplan Detailansichten
	//--- check for browser
	IE = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	//
	NS = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 ));
	//--- open pop-up window

	var strWindowName = "Galerie"
	var intWidth = 506;
	var intHeight = 575;
	var xposition=0; yposition=0;
//
	xposition = (screen.width - intWidth) / 2;
	yposition = (screen.height - intHeight) / 2;
//
	strArgs = 	"width="  + intWidth + "," 
	+ "height=" + intHeight + "," 
	+ "location=no," 
	+ "menubar=no,"
	+ "resizable=no,"
	+ "scrollbars=no,"
	+ "status=no," 
	+ "titlebar=no,"
	+ "toolbar=no,"
	+ "hotkeys=no,";
//
	if (IE) strArgs = strArgs	+ 	"left=" + xposition + ","
	+	"top=" + yposition;
//
	if (NS) strArgs = strArgs 	+	"screenx=" + xposition + ","
	+	"screeny=" + yposition;
//
//--- open window
	window.open(strPageToLoad, strWindowName, strArgs);
}

//--><!]]>