//open a window with the following url, width and height
function openWin(url, myWidth, myHeight){
   myWindow = window.open( url, "theWindow","toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,status=no,location=no,width=" + myWidth + ",height=" + myHeight);
   myWindow.focus();
}

function dropdown(element) {
      whichOne = element.selectedIndex;
      //element.selectedIndex = 0;
      document.location = element.options[whichOne].value; }