function MM_jumpMenu(targ,selObj,restore){ //v3.0
  //check if the selObj has a value
  if(selObj.options[selObj.selectedIndex].value != '') {
	//if it does, send the user to that page
  	eval(targ+".location='" + selObj.options[selObj.selectedIndex].value + "'");
  	if (restore) selObj.selectedIndex=0;
  } 
  //if it doesn't, do nothing
}
