function makeWindow()
{
	newWindow=open("slideshow.html","slideShow","width=320,height=250,location=no,toolbar=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");
}

function showAlert()
{
	window.alert("These higher quality images will take approximately 1 minute to preload using a 56K modem.  Please stand by...");
	return true;
}

function preloadImages() 
{ 
  if (document.images)
  {
    	var imgFiles = preloadImages.arguments;
    	if (document.preloadArray==null)
		document.preloadArray = new Array();
    	var i = document.preloadArray.length;
    	with (document) 
		for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#")
		{
      			preloadArray[i] = new Image;
      			preloadArray[i++].src = imgFiles[j];
		}
  }
}

function GotFocus(whatImage)
  {
        switcher = eval(whatImage + "Over");
        document[whatImage].src = switcher.src;
  }

function LostFocus(whatImage)
  {
        switcher = eval(whatImage + "Out");
        document[whatImage].src = switcher.src;
  }


