

/*
// <summary>
// Loads the images from the argument list of the function when called.
// </summary>
*/
var arImages = new Array();
    
    
function LoadImages ()
{

    // Local Variables  
    var temp = LoadImages.arguments; 

    // Begin

    for ( x = 0; x < temp.length; x++ )
    {

        arImages[x]     = new Image();
        arImages[x].src = temp[x];

    }// end for

}// end LoadImages




/*
// <summary>
// Creates a popup window for various operations on the site
// </summary>
*/
function OpenSmallWindow ( winWidth, winHeight, URLToOpen, title )
{

    // 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=yes,directories=no,scrollbars=yes";

    gdnWin   = window.open(URLToOpen, title, winProps, false);

    gdnWin.focus();

}// end function OpenSmallWindow