function MM_openBrWindow(theURL,winName,features) { 
/*
      ###########################################################
      Function to open new browser window
      Written: 31-08-1999
      Author: Dreamweaver Script
   
      Last Modified: 31-08-1999
      Variation:

      the URL is the document to open
      winName is the name of the new window
      features is a list of window attributes used to set the new browser window
      #####################################################
*/
window.open(theURL,winName,features);
}

   function go(){
/*
      ###########################################################
      Function to open page from a selection box
      Written: 31-08-1999
      Author: Keith Sherringham
   
      Last Modified: 18-11-1999
      Variation:

     
      #####################################################
*/
      if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
         location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
       }
    }

    function surfto(form) { 
/*
      ###########################################################
      Function to open page from a selection box in a new window
      Written: 31-08-1999
      Author: Keith Sherringham
   
      Last Modified: 18-11-1999
      Variation:

     
      #####################################################
*/

      var myindex=form.dest.selectedIndex;
      window.open(form.dest.options[myindex].value);
    }
