// ********************************************************************************************************
// ** JS Dropdown Functions
// **
// ** Autumn Falls Technologies, LLC 
// ** Author: EGrim 
// ** Date:   11/19/03
// **  
// ** This script contains the code to control 'drop down' objects (HTML Select boxes) functionality.
// **
// **
// ** If you wish to use this code and the associated scripts within the pages, you may do so as long as this entire
// ** Header section is kept intact.  
// **
// ********************************************************************************************************



// This is a very basic function that will redirect the browser to a selected item in a dropdown object.  The
//   object must call this function in the "onChange" event using "this" as the parameter.  The value attributes
//   in the OPTION tags must contain the target URL.
function GoTo(dropdown)
{
  var newPage = dropdown.options[dropdown.selectedIndex].value ;
  window.location = newPage ;

  // Not implemented yet  ==> call to use when frames are involved...
  // parent.frameX.location = "" ;
}