



/* Global Variables */




/*
// <summary>
// Creates a popup window for various operations on the site
// </summary>
*/
function INetApolloSmallWin ( winWidth, winHeight, URLToOpen, windowName ) 
{

    // Local Variables
    var winl     = (screen.width - winWidth) / 2;
    var wint     = (screen.height - winHeight) / 2;
    var winProps = "height=" + winHeight + ",width=" + winWidth + ",top=" + wint + ",left=" + winl + ",status=no,resizable=no,toolbars=yes,directories=no,scrollbars=yes";
    var inetWin;

    // Begin

    inetWin       = window.open(URLToOpen, windowName, winProps, false);

    inetWin.focus();

}// end function INetApolloSmallWin
