function newWindow(url) {
  var mynewWindow = window.open(url, "bjhwindow", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=550,height=400,left=100,top=100,screenX=100,screenY=100");
  mynewWindow.focus();
}

function MM_jumpMenu(selObj,restore){ //v3.0
  newWindow(selObj.options[selObj.selectedIndex].value);
  if (restore) selObj.selectedIndex=0;
}
