 function EditPass()
 {
  var win;

  win = window.open("Windows/EditPass.php" , "" , "width=400,height=300");     
 }

 function ArtikelInfo( ID )
 {
  var win;

   win = window.open("Windows/FrageZumArtikel.php?id="+ID , "" , "width=400,height=370,resizeable=yes,scrollbars=yes");
 }

 function ArtikelEmpfehlen( ID )
 {
  var win;

   win = window.open("Windows/ArtikelEmpfehlen.php?id="+ID , "" , "width=400,height=350,resizeable=yes,scrollbars=yes");
 }

 function SeiteDrucken( ID , Art )
  {
   var win;

   win = window.open("Windows/SeiteDrucken.php?id="+ID+"&art="+Art , "" , "width=400,height=350,resizeable=yes,scrollbars=yes");
  }

  function AGBWindow( ID )
  {
   var win;

   win = window.open("Windows/AGBWindow.php?sprache="+ID , "" , "width=450,height=500,resizeable=yes,scrollbars=yes");
  }

  function PasswortZusenden( )
  {
   var win;

   win =  window.open("Windows/PasswortZusenden.php", "" , "width=400,height=300,resizeable=yes,scrollbars=yes");
  }

  function ShowPicture( ID , Breite , Hoehe )
  {
   var win;

   if( Breite == 0 )
    Breite = 350;

   if( Hoehe == 0 )
    Hoehe = 400;

   win = window.open( "Windows/BildVorschau.php?id="+ID+"&hoehe="+Hoehe+"&breite="+Breite , "" , "height="+( Hoehe + 100 )+",width="+( Breite + 90 )+"" );
  }
