//<!--
if (parent.frames.length > 0) {top.location.href = self.document.location.href};

function neuesFenster(link,bars,breit,hoch){
msgWindow = window.open(link,"Infofenster","toolbar=no,width="+breit+",height="+hoch+",directories=no,status=no,scrollbars="+bars+",resizable=no,menubar=no,screenX=50,screenY=20,left=50,top=20");
msgWindow.focus();
}

function HideJSWarning()
{
// Schaltet JS-Warung bei Start ab
if(document.getElementById('JSWarung')){document.getElementById('JSWarung').style.display='none';}
}

function Nachfrage (Text) {
Check = confirm(Text);
if(Check == true)
{
 return true;
}
else
{
 return false;
}
}

function getE(obj){
	return document.getElementById(obj);	
}

function getEe(e){
	return e?e.target:window.event.srcElement;
}

function showE(obj,par){
	if(typeof(obj)=="string")
		obj=getE(obj);
	if(par==1)
		obj.style.display=obj.style.display=="block"?"none":"block";
	else
		obj.style.display="block";	
}

function hideE(obj){
	if(typeof(obj)=="string")
		obj=getE(obj);
	obj.style.display="none";	
}

// -->