function openWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
  }


  function LoadSlideShow() {
    var feed  = "http://picasaweb.google.com/data/feed/base/user/terryago11/albumid/5102726061519229137?kind=photo&alt=rss&authkey=oQMxSOU-TT0&hl=en_US";
    var options = {
	displayTime:4000,
	transistionTime:800,
	scaleImages:true};
    var ss = new GFslideShow(feed, "slideShow", options);
  }
  /**
   * Use google.load() to load the AJAX Feeds API
   * Use google.setOnLoadCallback() to call LoadSlideShow once the page loads
   */
  google.load("feeds", "1");
  google.setOnLoadCallback(LoadSlideShow);


function swapPhoto(photoSRC,theCaption) {
  var displayedCaption = document.getElementById("caption");
  displayedCaption.firstChild.nodeValue = theCaption;
  document.images.imgPhoto.src = "pictures/gallery/" + photoSRC;
}