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