<!--
function jump(url, name, w, h, scroll) {
  var win_width = (screen.width - w) / 2;
  var win_height = (screen.height - h) / 2;
  win_detail = 'height='+h+',width='+w+',top='+win_height+',left='+win_width+',scrollbars='+scroll+',resizable'
  win = window.open(url, name, win_detail)
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->