// JavaScript Document//<![CDATA[function subToggle(div) {	status = document.getElementById(div).style.display;	//alert(status);		if (status == "none") {		document.getElementById(div).style.display = "block";		//self.location.href = "?sub=block";	} else {		document.getElementById(div).style.display = "none";		//self.location.href = "?sub=none";	}}function show(element) {	element.className += "hover";	}	function hide(element) {		element.className = element.className = "";}function popup(loc,w,h) {		var breite = screen.width;	var hoehe = screen.height;		var links = (breite - w) * 0.5;	var oben = (hoehe - h) * 0.5;		popup_window = window.open(loc,"PopUp","width=" + w +",height=" + h + ",location=no,status=no,toolbar=no,top=100,resizable=no,left=" + links);	popup_window.focus();	}        //]]>