// 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 openHformat(theUrl) {
	var v = window.open(theUrl, "Fenster1", "height=500,width=375,resizable=yes,scrollbar=no");
	 if (v)
	  v.focus();
}	
	
function openQformat(theUrl) {
	var w = window.open(theUrl, "Fenster2", "height=375,width=500,resizable=yes,scrollbar=no");
	 if (w)
	  w.focus();
}	
	
function openEP(theUrl) {
	var x = window.open(theUrl, "Fenster3", "height=395,width=360,resizable=no,scrollbar=yes");
	 if (x)
	  x.focus();
	}
function openPic(theURL,winName,features) {
	var y = window.open(theURL,winName,features);
	if (y)
	 y.focus();
	}
