﻿function dropdown(mySel){var myWin, myVal;myVal = mySel.options[mySel.selectedIndex].value;if(myVal)   {   if(mySel.form.target)myWin = parent[mySel.form.target];   else myWin = window;   if (! myWin) return true;   myWin.location = myVal;   }return false;}function menu_over(id) {	document.getElementById("menu_"+id).className = 'over';}function menu_out(id) {	document.getElementById("menu_"+id).className = 'out';}