  var fotoWindow
  
      function toonFoto(fotoNaam)
      {
          fotoWindow = window.open('', 'foto', 'menubar=no,status=no,toolbar=no');
          fotoWindow.document.write ('<HTML>');
  				fotoWindow.document.write ('<BODY leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0>');
  				fotoWindow.document.write ('<img src="' + fotoNaam + '" name="foto">');
  				fotoWindow.document.close();
          checksize();
  		}
  	function checksize()
  	{
  		if (!(fotoWindow.closed))	{
      	if (fotoWindow.document.foto.complete)
      	{
  				if (!(fotoWindow.closed))	{
  	    		var winwidth = fotoWindow.document.foto.width+10;
  	    	}
  				if (!(fotoWindow.closed))	{
      			var winheight = fotoWindow.document.foto.height+29;
      		}
  				if (!(fotoWindow.closed))	{
  	        	fotoWindow.window.resizeTo(winwidth, winheight);
  	       	}
  				if (!(fotoWindow.closed))	{
          		fotoWindow.window.moveTo((screen.width - winwidth) / 2, (screen.height - winheight) / 2);
        	}
      	}
      	else
      	{
          	setTimeout('checksize()', 100);
      	}
      }
  	}