function open_help(mode){
  if (mode != "") { mode = mode + ".html"};
  var wo = 'top=10, left=10, toolbar=0, location=0, width=650, height=500, scrollbars=1, menubar=0, resizable=1, status=0, directories=0';
  var wi = window.open('/help/' + mode, '_blank', wo);
  wi.focus();
}

