	function PopWinStart(SectionList,w,h) 
	{
		var popupx = (screen.width/2)-(w/2);
		var popupy = (screen.height/2)-(h/2);	
		var popwin = window.open(SectionList, 'PopWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h+',left='+popupx+',top='+popupy+'');
		if (window.focus) popwin.focus();
	}
	function PopWin(SectionList,WinName,scroller,w,h) 
	{
			var popupx = (screen.width/2)-(w/2);
			var popupy = (screen.height/2)-(h/2);	
			var popwin = window.open(SectionList, WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroller+',resizable=no,width='+w+',height='+h+',left='+popupx+',top='+popupy+'');
			if (window.focus) popwin.focus();
	}
	
	function surfto(val) {
		location.href = val;
	}
	
	// 0ver für 1 Wechsel
	function over(id,bgClass) 
	{ 
		if(navigator.appName.indexOf("Netscape") != -1) {
			document.getElementById(id).className  = bgClass;
		} else {
			document.getElementById(id).className  = bgClass;
		}
	}	
	function out(id,bgClass) 
	{ 
		if(navigator.appName.indexOf("Netscape") != -1) {
			document.getElementById(id).className = bgClass;
		} else {
			document.getElementById(id).className = bgClass;
		}
	}
	
	// Over für 2 Wechsel
	function over2(id,bgClass,id2,bgClass2) { 
		if(navigator.appName.indexOf("Netscape") != -1) {
			document.getElementById(id).className  = bgClass;
			if (bgClass2!="") {
				document.getElementById(id2).className = bgClass2;
			}
		} else {
			document.getElementById(id).className  = bgClass;
			if (bgClass2!="") {
				document.all.tags('a')[id2].className = bgClass2;
			}
		}
	}
	function out2(id,bgClass,id2,bgClass2) { 
		if(navigator.appName.indexOf("Netscape") != -1) {
			document.getElementById(id).className = bgClass;
			if (bgClass2!="") {
				document.getElementById(id2).className = bgClass2;
			}
		} else {
			document.getElementById(id).className = bgClass;
			if (bgClass2!="") {
				document.all.tags('a')[id2].className = bgClass2;
			}
		}
	}	

		function submenu_onoff(id,count) {
			
			if (id>count){
				
				factor = Math.floor(id / count);	
				diff = count*factor;
				
				if (id>diff){
					id = id - diff;
				}
				else{
					id = count;
				}
				
			}
			
			for (i=1;i<=count;i++) {
				var submenuid	= 'submenu' + i;
				var submenuaid	= 'submenua' + i;
				submenu			= document.getElementById(submenuid);
				submenua		= document.getElementById(submenuaid);
				submenu.style.textDecoration	= 'none';
				submenua.style.textDecoration	= 'none';
			}
			var submenuid		= 'submenu' + id;
			var submenuaid		= 'submenua' + id;
			submenu				= document.getElementById(submenuid);
			submenua			= document.getElementById(submenuaid);
			submenu.style.textDecoration	= 'underline';
			submenua.style.textDecoration	= 'underline';
			
		}

