
function popupWindow(path, filename, caption) {
  popupWindow(650, 600, path, filename, caption);
}

function popupWindow(height, width, path, filename, caption) {
  var win2 = open("","imagePopup","width=" + width + ",height=" + height);
  win2.document.open();
  win2.document.write("<html><head><title>" + caption + "</title>");
  win2.document.write("<link rel='stylesheet' href='/assets/styles/global.css' type='text/css'></head>");
  win2.document.write("<body><div align='center'><br><img src='" + path + filename + "'>");
  win2.document.write("<p>"+caption+"</p><br><a href='javascript:;' onClick='window.close();'>Close Window</a>")
  win2.document.write("</div></body></html>");
  win2.document.close();
}
