<!--
	function MM_jumpMenu(targ,selObj,restore,path){ //v3.0
	  if(selObj.options[selObj.selectedIndex].value != "-1") eval(targ+".location='"+path+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
	}


	function MM_reloadPage(init) {  //reloads the window if Nav4 resized
	  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
	  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
	}
	MM_reloadPage(true);


// set variables
  var mac    = window.navigator.platform == "MacPPC" && navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) == "4";
  var mac_ie = window.navigator.platform == "MacPPC" && navigator.userAgent.match(/MSIE/i);
  var ie     = navigator.userAgent.match(/MSIE\s5.*/i);
  var ie6    = navigator.userAgent.match(/MSIE\s6.*/i);
  var ie4    = navigator.userAgent.match(/MSIE\s4.*/i);
  var op     = navigator.userAgent.indexOf('Opera') != -1;
  var ns4    = navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) == "4";
  var moz    = navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) > "4";
  
  /*
  if (mac) 			alert('<!--Browser: MacNetscape //-->');
  else if (mac_ie)  alert('<!--Browser: MacIE //-->');
  else if (ie)      alert('<!--Browser: Win < IE6 //-->');
  else if (ie6)     alert('<!--Browser: Win IE6 //-->');
  else if (ie4)     alert('<!--Browser: Win IE4 //-->');
  else if (op)      alert('<!--Browser: Win Opera //-->');
  else if (ns4)     alert('<!--Browser: Win NN4 //-->');
  else if (moz)     alert('<!--Browser: Win Moz //-->');
  else              alert('<!--Browser: keine Ahnung //-->');
  */

  var timer = null;

  var menus = 8;
  var outtime = 2000;
	
// open menu x
	function OpenMenu(x) {
		if(ie || ie6 && !op){
			if (window.navigator.platform == "MacPPC") {
				showmenu  = document.all.menu[x];
        		showmenu.style.visibility  = "visible";
				
        		for (i = 0; i < document.all.menu.length; i++) {
      	  			currentmenu  = document.all.menu[i];
		      		if ( ((currentmenu.style.visibility == "visible")&&(currentmenu != showmenu)) ) {
		        		currentmenu.style.visibility = "hidden";
		      		}
		    	}
			}
			else {
		    	showmenu  = document.all.menu[x];
        		showmenu.style.visibility  = "visible";
        		for (i = 0; i < document.all.menu.length; i++) {
					currentmenu  = document.all.menu[i];
		        	if ( ((currentmenu.style.visibility == "visible")&&(currentmenu != showmenu)) ) {
		        	currentmenu.style.visibility = "hidden";
		      		}
		    	}
		    }
		}
		if(moz || op) {
    		showmenu = document.getElementsByName("menu")[x];
			showmenu.style.visibility = "visible";

			for (i = 0; i < menus; i++) {
				currentmenu=document.getElementsByName("menu")[i];
				if ((currentmenu.style.visibility = "visible")&&(currentmenu != showmenu)) {
					currentmenu.style.visibility = "hidden";
				}
      		}
	  	}
		if(ie4){
			showmenu = document.all.menu[x];
      		showmenu.style.visibility = "visible";

      		for (i = 0; i < document.all.menu.length; i++) {
      			currentmenu=document.all.menu[i];
				if ( ((currentmenu.style.visibility == "visible")&&(currentmenu != showmenu)) ) {
					 currentmenu.style.visibility = "hidden";
				}
			}
		}
		if(ns4) {
			if (timer!=null) clearTimeout(timer);
			timer = setTimeout("Close()", 2700);
			showmenu = document.layers[x];
			showmenu.visibility = "visible";

			for (i = 0; i < menus; i++) {
				currentmenu=document.layers[i];
				if ((currentmenu.visibility = "show")&&(currentmenu != showmenu)) currentmenu.visibility = "hide";
			}
		}
  }


// hide all menus
	function Close() {
		if(mac || moz || (window.navigator.platform == "MacPPC")) {
			OpenMenu(menus);
		}

		for (i = 0; i < menus; i++) {
			if(op)        { document.getElementsByName("menu")[i].style.visibility = "hidden"; }
			if(ie4)       { document.all.menu[i].style.visibility = "hidden"; }
			if(ie || ie6) { document.all.menu[i].style.visibility = "hidden"; }
			if(ns4)       { document.layers[i].visibility = "hide"; }
		}
	}
	
// hold specific menu x
	function StayAlive(x) {
	  if(ie || ie6 || ie4 && !op) {
	  	if ((window.navigator.platform == "MacPPC") || (ie4)) {
	  		document.all.menu[x].style.visibility = "visible";
	  	} else {
	  	  document.all.menu[x].style.visibility = "visible"; }
	  	}
    if(ns4) { document.layers[x].visibility = "show"; }
    if(moz || op) { document.getElementsByName("menu")[x].style.visibility = "visible"; }
	}

// close specific menu x
	function CloseMenu(x) {
		if(moz || op) { document.getElementsByName("menu")[x].style.visibility = "hidden"; }
		if(ie || ie6 || ie4 && !op) {
			if ((window.navigator.platform == "MacPPC") || (ie4)) {
	  		document.all.menu[x].style.visibility = "hidden";
	  	} else {
			  document.all.menu[x].style.visibility = "hidden"; }
			}
    if(ns4) { document.layers[x].visibility = "hide"; }
	}

// hide all menus delayed - unused
	function CloseDelay() {
		if (timer!=null) clearTimeout(timer);
        	timer = setTimeout("Close()", 500);
        	return timer;
        }
	
// Funktion zum Öffnen von pull-down-Menues
	function pull_down_open(menu_index,topIE,topmoz,left) {
		if (navigator.appName == "Microsoft Internet Explorer") {
		  document.getElementsByName("pulldown_menu")[menu_index].style.top = topIE
		  document.getElementsByName("pulldown_menu")[menu_index].style.left = left;
		  document.getElementsByName("pulldown_menu")[menu_index].style.visibility = "visible";
		}
		else {
		  document.getElementsByName("pulldown_menu")[menu_index].style.top = topmoz;
		  document.getElementsByName("pulldown_menu")[menu_index].style.left = left;
		  document.getElementsByName("pulldown_menu")[menu_index].style.visibility = "visible";
		}
	}

// Funktion zum Schließen von pull-down-Menues
	function pull_down_close(menu_index) {
		document.getElementsByName("pulldown_menu")[menu_index].style.visibility = "hidden";
	}	
	
	function open_window(page,breite,hoehe,name){
		popup=window.open(page,name,"width=" + breite + ",height=" + hoehe + ",scrollbars=no,resizable=yes,menubar=no,locationbar=no");
		popup.focus();
	}
	
	function openWindow(page,name,breite,hoehe){
		popup=window.open(page,name,"width=" + breite + ",height=" + hoehe + ",scrollbars=no,resizable=no,menubar=no,locationbar=no");
		popup.focus();
	}	
	function launchFotoWindow(file,name,breite,hoehe) {
		window.open(file,name,"width="+breite+",height="+hoehe+",toolbar=1,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=1");
	}
//-->