/* this will contain the various functions for each tested version that will change the drop-down selected item */

/* menu swapping functions */
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function selectNav(currPage, currMenu, currForm) { 
/* set the selected item in the drop-down list */
	if (document.forms[currForm]) {
		document.forms[currForm].elements[currMenu].selectedIndex = currPage;
	}
}
