/* 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;
};