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,Alt0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Alt = Alt0;
   zu();
   setTimeout("sichtbar()",10);
}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 34;
   Fenster_Breite = Breite + 34;
   Optionen = 'left=5,top=5,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.writeln('<BODY TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" BGCOLOR="#FFFFFF" BACKGROUND="http://www.KDS-Online.com/Gfx_Background_Stansch_01.gif">');
      document.writeln('<DIV ALIGN=CENTER><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');
      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Alt+'" VSPACE="5"></TD></TR>');
      document.writeln('<TR><TD ALIGN="CENTER" VALIGN="BOTTOM"><INPUT type="button" value="Fenster schließen" name="B3" onclick="self.close()">');
      document.writeln('</TD></TR></TABLE></DIV></BODY></HTML>');
   }
}
function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
       neues_Fenster.close();
}

function ZeigenWeiss(Bild0,Titel0,Breite0,Hoehe0,Alt0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Alt = Alt0;
   zu();
   setTimeout("sichtbarWeiss()",10);
}

function sichtbarWeiss()
{  
   Fenster_Hoehe = Hoehe + 34;
   Fenster_Breite = Breite + 34;
   Optionen = 'left=350,top=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" BGCOLOR="#FFFFFF">');
      document.writeln('<DIV ALIGN=CENTER><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');
      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Alt+'" VSPACE="5"></TD></TR>');
      document.writeln('<TR><TD ALIGN="CENTER" VALIGN="BOTTOM"><INPUT type="button" value="Fenster schließen" name="B3" onclick="self.close()">');
      document.writeln('</TD></TR></TABLE></DIV></BODY></HTML>');
   }
}

