<!---


function Zeigen(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;

   
   sichtbar()
}

function sichtbar()
{  

   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0,height=780,width=1040'
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster)
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY bgcolor=#000000 color=#FFFFFF link=#FFFFFF topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
      document.writeln('<table height=95% align=center><tr><td align=center><IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Titel+'"></td></tr></table>');
      document.writeln('</BODY></HTML>')
   }
}


function ZeigenV(Bild0,Titel0)
{
   Bild = Bild0;
   Titel = Titel0;
   
   
   sichtbarV()
}

function sichtbarV()
{  

if (screen.width < 1275) {Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0,height=764,width=560';
Hoehe = 740;
Breite = 555;
}
if (screen.width >= 1280) {Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0,height=1000,width=745';
Hoehe = 980;
Breite = 736;

}

   
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster)
   {

      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY bgcolor=#000000 color=#FFFFFF link=#FFFFFF topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
      document.writeln('<table height= align=center><tr><td align=center><IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Titel+'"></td></tr></table>');
      document.writeln('</BODY></HTML>');
      


   }
   
}


//--->

