
function PreloadImages()
{
	// Don't bother if there are no document.images
	if (document.images)
	{
		if (typeof(document.MWS) == 'undefined')
		{
			document.MWS = new Object();
		}
	    document.MWS.loadedImages = new Array();
	    // Loop through all the arguments.
	    var argLength = PreloadImages.arguments.length;
	    for(arg=0;arg<argLength;arg++)
	    {
			// For each arg, create a new image.
			document.MWS.loadedImages[arg] = new Image();
			// Then set the source of that image to the current argument.
			document.MWS.loadedImages[arg].src = PreloadImages.arguments[arg];
		}
	}
}

function SetScrollbarColor()
{
	if (document.all)
	{
		document.body.style.scrollbarBaseColor = '#000096';
		document.body.style.scrollbarArrowColor='#FFFFFF';
		document.body.style.scrollbarDarkShadowColor='#0000FF';
		document.body.style.scrollbarHighlightColor='#FFFF00';
	}
}
