/* JavaScriptfunktionen für GMMB-Reiseseiten */

/* Funktionen für das ein- und ausschalten von Layern */

	function show_layer(x)
	{
		if (document.layers) document.layers[x].visibility="show";
		else document.all[x].style.visibility="visible";
	}
	
	function hide_layer(x)
	{
		if (document.layers) document.layers[x].visibility="hide";
		else document.all[x].style.visibility="hidden";
	}


<!-- WOP - Popupwindow mit variabler Größe	-->
	
	function WOP(dateiname, breite, hoehe) {
		var windowprops = "toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes" + ",left=10, top=10" + ",width=" + breite + ",height=" + hoehe;
		popup = window.open(dateiname,"WOP",windowprops);
	}

<!-- WOP - Popupwindow mit variabler Größe OHNE MENÜ	-->
	
	function WOPER(dateiname, breite, hoehe) {
		var windowprops = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=auto,resizable=yes" + ",left=10, top=10" + ",width=" + breite + ",height=" + hoehe;
		popup = window.open(dateiname,"WOP",windowprops);
	}


