// JavaScript Document
function $(e) {
	return document.getElementById(e);
}

	b_sitemap_0 = new Image();
	b_sitemap_1 = new Image();
	b_sitemap_0.src = "/bilder/b_sitemap_0.gif";
	b_sitemap_1.src = "/bilder/b_sitemap_1.gif";
	b_sitemap = document.getElementById("b_sitemap");
	b_ichsuche_0 = new Image();
	b_ichsuche_1 = new Image();
	b_ichsuche_0.src = "/bilder/b_ichsuche_0.gif";
	b_ichsuche_1.src = "/bilder/b_ichsuche_1.gif";
	b_ichsuche = document.getElementById("b_ichsuche");
	b_dialog_0 = new Image();
	b_dialog_1 = new Image();
	b_dialog_0.src = "/bilder/b_dialog_0.gif";
	b_dialog_1.src = "/bilder/b_dialog_1.gif";
	b_dialog = document.getElementById("b_dialog");
	sitemapStatus = false;
	ichsucheStatus = false;
	dialogStatus = false;
	activeMenu = false;


	function ClosePopup() {
		popup.style.visibility="hidden";
	}
	
	function OpenPopup(s, w, h) {
		//popupIframe.location.replace(s);		
		//popup.style.visibility="visible";
		window.open(s, "Fenster1", "width="+w+",height="+h+",left=200,top=100");
	}
	
	function SwitchSitemap() {
		if(sitemapStatus) {
			b_sitemap.src = b_sitemap_0.src;
			$("sitemap").style.visibility = "hidden";
			sitemapStatus = false;
			activeMenu = false;
		}
		else {
			closeAll();
			b_sitemap.src = b_sitemap_1.src;
			$("sitemap").style.visibility = "visible";
			sitemapStatus = true;
			activeMenu = sitemap;
			setTimeout("document.onclick = BodyClick", 100);
		}
	}

	function SwitchIchsuche() {
		if(ichsucheStatus) {
			b_ichsuche.src = b_ichsuche_0.src;
			$("ichsuche").style.visibility = "hidden";
			ichsucheStatus = false;
			activeMenu = false;
		}
		else {
			closeAll();
			b_ichsuche.src = b_ichsuche_1.src;
			$("ichsuche").style.visibility = "visible";
			ichsucheStatus = true;
			activeMenu = ichsuche;
			setTimeout("document.onclick = BodyClick", 100);
		}
	}

	function SwitchDialog() {
		if(dialogStatus) {
			b_dialog.src = b_dialog_0.src;
			$("dialog").style.visibility = "hidden";
			dialogStatus = false;
			activeMenu = false;
		}
		else {
			closeAll();
			b_dialog.src = b_dialog_1.src;
			$("dialog").style.visibility = "visible";
			dialogStatus = true;
			activeMenu = dialog;
			setTimeout("document.onclick = BodyClick", 100);
		}
	}

	function closeAll() {
		if(ichsucheStatus) SwitchIchsuche();
		if(sitemapStatus) SwitchSitemap();
		if(dialogStatus) SwitchDialog();
		document.onclick = null;
	}
	
	function BodyClick(evt) {
		if(event) evt = event;
		if(activeMenu) {
			x1Mnu = activeMenu.offsetLeft;
			y1Mnu = activeMenu.offsetTop;
			x2Mnu = x1Mnu + activeMenu.offsetWidth;
			y2Mnu = y1Mnu + activeMenu.offsetHeight;
			if (evt.x < x1Mnu || evt.y < y1Mnu || evt.x > x2Mnu || evt.y > y2Mnu) {
				closeAll();
			}
		}
	}
	
	function OpenPrintWindow() {
//		/cocoms/detail.php?id=%COCOMS_data(field="id")&template=druck
		window.open("/cocoms/detail.php?id="+id+"&template=druck", "CoretoPrintWindow", "width=520, height=500,left=0,top=0,scrollbars=yes");
//		printframe.location.replace("/cocoms/detail.php?id=%COCOMS_data(field="id")&template=druck");
	}



