newWindow = null;
function Pop(Bild0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Zu();
   Show();
}
function Show()
{  
   Fenster_Hoehe = Hoehe + 30;
   Fenster_Breite = Breite + 40;
   newWindow = window.open('','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=0,top=0,height='+Fenster_Hoehe+',width='+Fenster_Breite);
   with (newWindow)
 {
      document.writeln('<HTML><HEAD><TITLE>click zum Schlie&szlig;en</TITLE></HEAD>');
      document.writeln('<BODY BGCOLOR="#04046A" onContextMenu="return false" onDragStart="return false" onSelectStart="return false">');
      document.writeln('<DIV ALIGN=CENTER><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');
      document.writeln('<A HREF="Javascript:window.close()">');
      document.writeln('<IMG SRC="'+Bild+'.jpg" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="Kommt sofort..."></A></TD>');
      document.writeln('</TR></TABLE></DIV></BODY></HTML>');
   }
}
function Zu()
{
   if (newWindow != null)
     if (!newWindow.closed)
       newWindow.close();
}

