<!--
function nix() {}
Protokoll = self.location.protocol;
Pfad = self.location.pathname;

Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)

neues_Fenster = null;

function Zeigen(Bild0,Titel0,Breite0,Hoehe0,Beschreibung0,vFarbe0,hFarbe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Beschreibung = Beschreibung0;
   hFarbe = "#"+hFarbe0;
   vFarbe = "#"+vFarbe0;
   
   zu();
   setTimeout("sichtbar()",500);
   
}
function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 100;
   Fenster_Breite = Breite + 40;
   
   
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.bgColor=hFarbe
	  document.fgColor=vFarbe
	  document.writeln('<BODY> <DIV ALIGN=CENTER><TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 VALIGN="top"><TR><TD>');
      document.writeln('<A HREF="#" ONCLICK="JAVASCRIPT:self.close()"><IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Titel+'"></A></TD>');
      document.writeln('</TR></TABLE><font face="Arial, Helvetica, sans-serif" size="2">'+Beschreibung+'</font><p><font size="1" face="arial,helvetica,sans-serif" >(klicken Sie auf das Bild, um das Fenster zu schließen)</font></DIV></BODY></HTML>');
   }
}
function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
       neues_Fenster.close();
}
function laufschrift(text0)
{
text=Titel0
window.status=text;
}

function bild(imgName) {
if (ns3up || ie4up) {
imgOn = ("" + imgName);
document.gross.src = imgOn;
   }
}


function aendern(wert,wert3){
  if(wert){
    var wert1 = '';
    var wert2 = wert1 + wert;
    bild = new Image();
    bild.src = wert2;
    imgOn = eval('bild.src');
    document[wert3].src = imgOn;
  }
}
// -->
