var newWindow;
function openWindow (destination)
{
 if ((navigator.platform && navigator.platform.indexOf("Mac")!= -1) && document.all) {
  newWindow =window.open(destination,"newWindow","status=yes, resizable=yes, scrollbars=yes,width=587,height=450");}
 else {newWindow = window.open(destination,"newWindow","status=yes, resizable=yes, scrollbars=yes,width=603,height=466");}
 newWindow.focus();
 return false;
}

function jumpMenu(targ,selObj,restore) {
 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
 if (restore) selObj.selectedIndex=0;
}