function doPreload()
{
  var the_images = new Array('images/icon_house_01.gif','images/icon_letter_01.gif');
  preloadImages(the_images);
}

function preloadImages(the_images)
{
  for(loop = 0; loop < the_images.length; loop++)
  {
    var an_image = new Image();
    an_image.src = the_images[loop];
  }
}


function liteMe(myImage)
{
  document.images[myImage].src = "images/icon_" + myImage + "_01.gif";
}
function darkMe(myImage)
{
  document.images[myImage].src = "images/icon_" + myImage + "_00.gif";
}

function openMyPhoto(theURL,myWidth,myHeight)
{
  var newWindow = window.open(theURL,'spawn','scrollbars=yes,resizable=yes,width='+myWidth+',height='+myHeight+'');
  newWindow.focus();
}


