
function imageViewer( window_name, img_width, img_height, img_url, img_title, img_desc ) {
  var win_width = img_width + 40;
  var win_height = img_height + 90;
  var win_top = ( screen.height - win_height ) / 2 - 4; // window borders approx.
  var win_left = ( screen.width - win_width ) / 2 - 4;
  win = window.open( "", window_name, "toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=yes, scrollbars=no, width=" + win_width + ", height=" + win_height + ", left=" + win_left + ", top=" + win_top );
  
  win.document.write( "<html>" );
  win.document.write( "<head><title>" + img_title + "</title>" );
  win.document.write( '<link rel="stylesheet" type="text/css" href="/themes/electron/electron.css" title="Standard Theme"/>' );
  win.document.write( '<link rel="stylesheet" type="text/css" href="/themes/electron/electron_simple.css"/>' );
  win.document.write( '</head><body style="padding: 18px;">' );
  win.document.write( '<div style="margin-right: auto; margin-left: auto;"><a href="javascript:window.close();"><img src="' + img_url + '" alt="' + img_desc + '" width="' + img_width + '" height="' + img_height + '" style="border: 2px white solid;" /></a></div>' );
  win.document.write( '<div style="margin-right: auto; margin-left: auto; padding: 4px; text-align: center;">' + img_desc + '</div>' );
  win.document.write( "</body></html>" );
  
  win.document.close();
  
  return false;
}