/* Copyright by componeo GmbH, Clemens Rath */


/* Seitenaufrufe in popup-Fenstern */
function goToSite(uri,windowName)
        {
		var msgWindow = 				window.open(uri,"external","toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
		msgWindow.focus();
        }; 
		
/* benötigt die dhtml.js Bibliothek */
function change_footer(text) {
 if (!text) {
  text = "";
 }
 if(DHTML) {
   if(!NS) setCont("id","footer",null,text);
 }
 else return;
}

/* Mouseover */
function change(name, bild) 
{ 	
self.document[name].src=bild;
};

/* Seitenaufrufe in popup-Fenstern */
function neuesFenster(url,fenstername)
        {
		var msgWindow = 				window.open(url,fenstername,"toolbar=yes,menubar=no,scrollbars=yes,resizable=yes,width=620,height=600");
		msgWindow.focus();
        }; 

function bereich_ausblenden(ausblendbereich){
if(document.getElementById) {
	 bereich = eval(document.getElementById(ausblendbereich));
	 bereich.style.display = "none";
	}
}

function bereich_einblenden(einblendbereich){
if(document.getElementById) {
	bereich = eval(document.getElementById(einblendbereich));
	bereich.style.display = "block";
	}
}
