/**
 * Opens a window for displaying images.
 * Call this as the onclick event of an anchor as follows
 * <a href="image.jpg" target="mwImage" onclick="return openImageWindow()">
 */
function openImageWindow() {
  var imageWindow = window.open("", "mwImage", "toolbar=0,width=640,height=640,resizable=0");
  imageWindow.focus();
  return true;
}

