function PopupFoto(src,title,eventx,eventy,width,height){
  var w = window.open('','foto','scrollbars=no,resizable=no,left=' + eventx + ',top=' + eventy + ',width=' + (width - 5) + ',height=' + (height - 5) );
  w.document.open();
  w.document.write( '<html><head><title>' + title + '</title></head>' );
  w.document.write( '<body scroll="no" onDragStart="return false" onSelectStart="return false" onContextMenu="return false" style="border:0px;margin:0px;padding:0px" marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>' );
  w.document.write( '<a href="JavaScript:window.close()">' );
  w.document.write( '<img src="' + src + '" border="0" hspace="0" vspace="0" width="' + width + '" height="' + height + '">' );
  w.document.write( '</a>' );
  w.document.write( '</body>' );
  w.document.write( '</html>' );
  w.document.close();
}
