  /* ---- function zum anzeigen eines Elementes ---- */
	function showElem (id) {
	  if (document.getElementById(id)) 
	    document.getElementById(id).style.visibility = "visible";
	}
	
  /* ---- function zum Verbergen eines Elementes ---- */
	function hideElem (id) {
	  if (document.getElementById(id))
	    document.getElementById(id).style.visibility = "hidden";
	}

  /* ---- function zum Weiterleiten an ein neue Url ---- */
  function loadUrl(url){
    window.location.href = url;
  }
  
  /* ---- function zum Oeffnen eines neuen Fensters ---- */
	function openPopup (url) {
		src = url + ".php";
		popup = window.open(src, "popup", "width=300,height=200,left=100,top=200");
		popup.focus();
	}
	
	/* ---- function zum Oeffnen eines SubMenus ---- */
	function sub (id) {
		for (var i=1; i<7; i++) {
			hideElem (i);
		}
		document.getElementById(id).style.zIndex = 20;
		showElem (id);			
	}
