newWindow = null;
function Pop(Bild0,Breite0,Hoehe0)
{
   Pfad = "http://pics.bsb-crazy-mummies.de/pics/";
   Bild = Pfad+Bild0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   Zu();
   Show();
}
function Show()
{  
   Fenster_Hoehe = Hoehe;
   Fenster_Breite = Breite;
   newWindow = window.open('','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=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="#600000" TEXT="#FFFFFF" onContextMenu="return false" onDragStart="return false" onSelectStart="return false" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
      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+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ></A></TD>');
      document.writeln('</TR></TABLE></DIV></BODY></HTML>');
   }
}
function Zu()
{
   if (newWindow != null)
     if (!newWindow.closed)
       newWindow.close();
}
