﻿// JScript File

function openWindow(args, popWidth, popHeight)
{
   var myWinFocus;
   if (popWidth == null || popHeight == null)
   {
      var popWidth = 500;
      var popHeight = 500;
   }
   var winLeft = (screen.width - popWidth) / 2;
   var winTop = (screen.height - popHeight) / 2;
   myWinFocus = window.open(args, "Window", "width=" + popWidth + ",height=" + popHeight + ",screenX=" + winLeft + ",screenY=" + winTop + ",top=" + winTop + ",left=" + winLeft + ",resizable=yes,scrollbars=1,status=0,toolbar=0,location=0,menubar=0");
   myWinFocus.focus();
}
//-->


