<!-- hide
 
Protokoll = self.location.protocol;

Pfad = self.location.pathname;

Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)

neues_Fenster = null;



function Zeigen(Bild0,Breite0,Hoehe0)

{

   Bild = Bild0;

   Breite = Breite0;

   Hoehe = Hoehe0;

   setTimeout("sichtbar()",1000);

}



function sichtbar()

{  

   Fenster_Hoehe = Hoehe + 65;

   Scroll = 10;

   Fenster_Breite = Breite + 40;

   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+Scroll+',resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;

   neues_Fenster = window.open('','',Optionen)

   with (neues_Fenster) 

   {

      document.writeln('<HTML><HEAD><TITLE>La Traviata</TITLE></HEAD>');

      document.writeln('<BODY BGCOLOR="#ffffff" text="#333333" link="#003399" vlink="#003399"><DIV ALIGN=CENTER><TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');

      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0></TD>');

      document.writeln('</TR></TABLE><font face="Verdana, Arial, sans serif" size="-1"style="font-size: 10pt"><br>Fotos von Klaus Lebrebvre<br><a href="javascript:self.close()" STYLE="text-decoration: none">schließen</a></font></DIV></BODY></HTML>');

   }

}
//-->