// Function to preload an image
// AUTHOR: NR and dOb
// DATE: 04/09/2001

function image_preload()
{
  for (var ipc = 0; ipc < image_preload.arguments.length; ipc++) {
     newImg = new Image
     newImg.src = image_preload.arguments[ipc]
  }
}
