/*#########################################################*/
/* FUNCTIE VOOR POPUP FOTO WINDOW
/*#########################################################*/
function showphoto(f,i)
{
  Wurl         = 'http://foedererdfk.whitenma.nl/foto.php?f='+f+'&i='+i;
  Wname        = 'FotoAlbum';
  Wtoolbar     = 0;
  Wlocation    = 0;
  Wdirectories = 0;
  Wstatus      = 0;
  Wmenubar     = 0;
  Wscrollbars  = 0;
  Wresizable   = 0;
  Wcopyhistory = 0;
  _width       = 600;
  _height      = 600;

  Wtop  = (document.body.clientHeight-_height)/2;
  Wleft = (document.body.clientWidth-_width)/2

  nw = window.open(Wurl,Wname,"height="+_height+",width="+_width+",top="+Wtop+",left="+Wleft+",resizable="+Wresizable+",scrollbars="+Wscrollbars+",toolbar="+Wtoolbar+",menubar="+Wmenubar+",location="+Wlocation+",status="+Wstatus+",directories="+Wdirectories);
}

