function JumpMenu(url,width,height) {
  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,"",options);
  popup.moveTo(moveToX,moveToY);
}

