<!--


function popup(theURL,winName,y,x,width,height,features) { 
	winfeatures=("top="+y+",left="+x+",width="+width+",height="+height+","+features);
	window.open(theURL,winName,winfeatures);
}

// <a href="javascript:popup('seite','name','y','x','500','300','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,dependent=1');">&raquo; Linktext</a>

// ################################################################################################################################################



function hideSubMenu(){

	document.getElementById("IDsubmenu").style.visibility = "hidden";

}
	
// **************************************************************************************************************************************************
// **************************************************************************************************************************************************
function showSubMenu(){

	document.getElementById("IDsubmenu").style.visibility = "visible";

}
	
// **************************************************************************************************************************************************
// **************************************************************************************************************************************************
function showHaftung(kind){
	
	if (kind == "on"){
		document.getElementById("IDhaftung").style.visibility = "visible";
	}else{
		document.getElementById("IDhaftung").style.visibility = "hidden";
	}

}
	
// **************************************************************************************************************************************************
// **************************************************************************************************************************************************
function changeCSS(css){
	
  var xmlHttp;
  try{
	xmlHttp=new XMLHttpRequest();
	}
  catch (e){
	try{
	  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	  }
	catch (e){
	  try{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	  catch (e){
		return false;
		}
	  }
	}
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			var Xcss	= xmlHttp.responseXML.getElementsByTagName("css");
			var Rcss = Xcss[0].firstChild.nodeValue;
			window.location.reload();
		}
	}
		 
	xmlHttp.open("GET", "ajax/setCSS.php?css=" + css, true);
	xmlHttp.send(null);
	
}
	
// **************************************************************************************************************************************************
// **************************************************************************************************************************************************
-->
