// JavaScript Document

//script that allows a dropdown menu on a page to be used to redirect pages
//if they select one of the selections this script will take the browser to whatever page is specified on the dropdown code

function jumpMenu(targ,selObj,restore){ //v3.0	   
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
	}
