function loadAlbum(frm)
{

// Loads the chosen photo album into the right-hand frame


   if (frm.selAlbum.value == "tsphotos")
   {
     var newWin = window.open("http://www.topscooter.co.uk/pgallery/picmenu.html");
   }
   else
   {
   var album=frm.selAlbum.value;
   var albumURL = "/_orig/photos/" + album + "/default.htm";
   parent.homeRight.location=albumURL;
   }
}
