function getImage ()
{
  var image, i;

  if (document.images)
    {
      for (i = 0; i < arguments.length; i++)
        new Image ().src = arguments[i];
    }
}

function setImage (name, src)
{
  if (document.images && document.images[name])
    document.images[name].src = src;
}
