﻿// JScript File
var windowPopup;
function OpenHighRez(val)
{
  docwidth = 450;
  docheight = 300;
  leftVal = (screen.width - docwidth) / 2;
  topVal = (screen.height - docheight) / 2;
  windowPopup = window.open("/GetResources/getresource.aspx?DocID=" + val, "name","height=" + docheight + ",width=" + docwidth + ",left=" + leftVal + ",top=" + topVal + "toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");  
  windowPopup.focus();
}