//////////////////////////////////////////////////////////////////////////////////////////////
function shownavLayer1(xid, max)
//////////////////////////////////////////////////////////////////////////////////////////////
{
	for (var x = 1; x <= max; x++)
	{
		if (document.getElementById(x).id == xid)
		{
			document.getElementById(x).style.display = "block";
		}
		else 
		{
			document.getElementById(x).style.display = "none";
		}
	}
}

//////////////////////////////////////////////////////////////////////////////////////////////
function winopen(pfilename, bezeichnung, beschreibung, breite, hoehe)
//////////////////////////////////////////////////////////////////////////////////////////////
{
	if(window.mywin)
		window.mywin.close();
	
	mywin = window.open("galerie.php?p=" + pfilename + "&bezeichnung=" + bezeichnung + "&beschreibung=" + beschreibung, "galerie", "width="+breite+", height="+hoehe+", left=0px, top=0px, hotkeys=no, scrollbars=yes, resizable=no, dependent=yes, status=no, locationbar=no, menubar=no, border=0");
	mywin.focus
} // end winopen

