function Jump(form,name,width,height,missing){
  var index=form.jump.selectedIndex;
  newWindow=1*(form.window[0].checked ? form.window[0].value:form.window[1].value);
  if(form.jump.options[index].value) {
    url = form.jump.options[index].value;
    if(index==missing) index++;
    applet=name+index;
    if(newWindow==0)
      document.location.href = url;
    else {
      moveToX=Math.max(0,(screen.width-width)/2);
      moveToY=Math.max(0,(screen.height-height)/2);
      options ='toolbar=no,';
      options+='location=no,';
      options+='directories=no,';
      options+='status=no,';
      options+='scrollbars=yes,';
      options+='resizable=yes,';
      options+='copyhistory=no,';
      options+='screenX='+moveToX+',';
      options+='screenY='+moveToY+',';
      options+='left='+moveToX+',';
      options+='top='+moveToY+',';
      options+='width='+width+',';
      options+='height='+height;
      popup=window.open(url,applet,options);
      popup.moveTo(moveToX,moveToY);
    }
  }
}
