// JavaScript Document

var n4, ie, w3c;

function init() {
	n4 = document.layers;
	ie = document.all;
	w3c = document.documentElement;
	}

function showLayer(Name) { 
    if (ie) { 
	document.all[Name].style.visibility = 'visible';
	} else {
		document.getElementById([Name]).style.visibility = 'visible';
		} 
}

function hideLayer(Name) { 
    if (ie) { 
	document.all[Name].style.visibility = 'hidden';
	} else  {
		document.getElementById([Name]).style.visibility = 'hidden';
		} 
}

/*
function openIt(theUrl) {
	fenster = window.open(theUrl, "Detail", "height=398,width=400,top=100,left=30,resizable=no,scrollbars=no,menubar=no,status=no,location=no,dependent=yes");
	fenster.focus();
	}

*/
function openIt(theUrl) {
	window.open(theUrl, "Galerie", "height=445,width=500,resizable=yes,toolbar=no,locationbar=no,menubar=no,statusbar=no,scrollbars=no");
	}

