// JavaScript file written for the RRBDIN website
// Written by: Brian Fischer 12/06/02
// Purpose: With this file links in the dropdown menu only have to be changed in one location.

// Handles which item in the dropdown menu is selected.
function formhandler(){
   var URL = document.forms[0].selectname.options[document.forms[0].selectname.selectedIndex].value
   parent.window.location.href = URL
 }
