function bolGalleryPopup(imageFile, width, height, title){
  var html = '<title>' + title + ' - Click to close </title>'
           + '<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onclick="javascript:window.close()">'
           + '<img src="' + imageFile + '" alt="Click to close"></body>';
  var popup = window.open(imageFile, '_blank', 'width=' + width+ ', height=' + height + ', status=no');
  popup.document.write(html);
  popup.focus();
}