<!--
// Author: Howard Lively [theRamMan@CarolinaFan.com]
// Date:   October 30, 2001
// Dept:   Scholarships & Student Aid - UNC-CH
// Appl:   SSA web site
// Func:   Jump to selected URL.

function menuJump(targ,selObj,restore) {

eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
};

//-->
