function CSI_preloadImages() {
/*
CSI_preloadImages()
Loads images into the browser's cache for later use.
Author - Paul W. Bloetscher, CyberLink Systems, Inc.
Copyright 2000-2010 - CyberLink Systems, Inc. - All rights reserved
Usage: <body onLoad="CSI_preloadImages('path/image1.gif','path/image2.gif','path/image3.gif');">;
*/
  // Check for image support in the DOM
  if (document.images) {
    if (typeof(document.CSI) == 'undefined'){
      document.CSI = new Object();
    }
    document.CSI.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = CSI_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.CSI.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.CSI.loadedImages[arg].src = CSI_preloadImages.arguments[arg];
    }
  }
}
