 <!--
 
 // "Popup": Oeffnet Popup Fenster
 
   var win=null;

   function NewWindow(mypage,myname,w,h,scroll,pos) {

	if(pos=="random") {
	   LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
	   TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
	}
	if(pos=="center") {
	   LeftPosition=(screen.width)?(screen.width-w)/2:100;
	   TopPosition=(screen.height)?(screen.height-h)/2:100;
	}
	else if((pos!="center" && pos!="random") || pos==null) { LeftPosition=50; TopPosition=50 }
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open(mypage,myname,settings);
   }


 // "zu Favoriten" inkl. Fehlermeldung f&uuml;r netscape, zweisprachig.
	
  function zuFavoriten(FAVOlink,FAVOinfo,sprache) {
    if (sprache == "EN" || sprache == "en") {
    	var msgNS="Sorry, your Browser does not support to add a bookmark automatically.\nPlease press \"Ctrl + D\" to add this page to your bookmarks."; 
    } else {
    	var msgNS="Sorry, das automatische Hinzufügen von Lesezeichen unterstützt Ihr Browser leider nicht.\nBitte drücken Sie \"Strg + D\" um diese Seite zu Ihren Lesezeichen hinzuzufügen."; 
    }
    if (document.all) { 
    	window.external.AddFavorite(FAVOlink,FAVOinfo);
    } else if (document.layers ||(document.getElementById && !document.all)) {
    	alert(msgNS);
    }
  }
  

 // Drucken: Focus auf das aktuelle Fenster und Drucken

  function Drucken(){
  	self.focus();
  	self.print();
  }

 
 // resize_PP: resized das Popup anhand Bildgroesse von Bild mit id=='bild'
 
  var i=0;
  function resize_PP() {
    if (navigator.appName == 'Netscape') i=40;
    if (document.images['bild']) window.resizeTo(document.images['bild'].width+25, document.images['bild'].height+60);
  self.focus();
  }

 // linkumwandlung in javascript - gibt nichts ab

    function go(link) {
	document.location.href = link;
    }

  
 // -->   