﻿// JScript File

function OpenHighRez(val)
{
  var windowPopup;
  docwidth = 450;
  docheight = 300;
  leftVal = (screen.width - docwidth) / 2;
  topVal = (screen.height - docheight) / 2;
  windowPopup = window.open("/GetResources/Default.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();
}