
// Bilddatei in einem neuen Fenster öffnen, welches sich 
// automatisch der Bildgroesse anpasst:
function ShowImage (file,title,id)
  {
  //alert (file);
  newWindow = open ("/bildergalerie/inc/showimage.php?file="+file+"&title="+title+"&p2g_id="+id,"Bildanzeige","width=310,height=400,left=320,top=0,menubar=0,scrollbars=no, resizable=yes") ;
  }
  
function ShowImageScroll (file,title,id)
  {
  //alert (file);
  newWindow = open ("/bildergalerie/inc/showimage.php?file="+file+"&title="+title+"&p2g_id="+id,"Bildanzeige","width=310,height=400,left=320,top=0,menubar=0,scrollbars=yes, resizable=yes") ;
  }
  
function ShowImageNoCount (file,title,id)
  {
  //alert (file);
  newWindow = open ("/bildergalerie/inc/showimage_nocount.php?file="+file+"&title="+title+"&p2g_id="+id,"Bildanzeige","width=310,height=400,left=320,top=0,menubar=0,scrollbars=no, resizable=yes") ;
  }  
