
function jumpto(selObj, target){ 
   target = (target) ? target : 'parent'; 
   gourl = selObj.options[selObj.selectedIndex].value; 
   if (gourl) { 
      eval(target+".location='"+gourl+"'"); 
   } 
} 