function stamtavla(pFileName) {

  photoWin = window.open( "", "Foto", "width=220,height=195,statusbar=no,scrollbars=no,resizable=no");

  photoWin.document.write('<html><BODY BGCOLOR=#ffbbf4>');
  photoWin.document.write('<center>');
  photoWin.document.write('<img src="img/stamtavlor/' + pFileName + '"onClick="window.close();">');
  photoWin.document.write('</center></body></html>');
  photoWin.document.close();	
  photoWin.focus();
}