<!--DROP DOWN MENU-->
<!--

var NewURL

function jumpMenu(item) {   
          
		  // Check and see if the user clicked the default entry
		  if (item.options[item.selectedIndex].value == "local") {
             
				// do nothing         
          
		  } else {
		  
		  // Get the new URL
          var newLink = item.options[item.selectedIndex].value
          
		  // Open a new window with the url
		  window.open(newLink)

		  // Set the jump box back to the original position
          item.selectedIndex=0
        }
	}
//-->

