/* Code for Drop Down Menu */

/* This function selects the proper page to link to from the 
drop-down menu and breaks out of the frame */

function goToURL(form)
  {
    var myindex=form.dropdownmenu.selectedIndex
    if(!myindex=="")
      {
top.location.href=form.dropdownmenu.options[myindex].value;
      }
  }
