



/*
// <summary>
// Array that will be used to dynamically load the images from the LoadImages argument list
// </summary>
*/
var arImages = new Array();




    
/*
// <summary>
// Creates a popup window for various operations on the site
// </summary>
*/    
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
