function csPreloadImage(aAddress)
  {
  if (document.images)
    {
    var img = new Image(); 
    img.src = aAddress;
    }
  }

