function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


var EgoWin="";
function EgoPop(url, w, h){
EgoWin=window.open(url, "popup",  "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=" + w + ", height=" + h);
EgoWin.focus();
}

function egoJump(id){
valueURL=id.options[id.selectedIndex].value;
if (valueURL == '$') return false;
test=valueURL.search(/selectorguide/); 
if (test > -1) EgoPop(valueURL, '800' ,'600') 
else window.location=valueURL; 
}

