function OpenWindowHelp( pagehelp ) {
  var w = Math.floor((screen.width-780)/2)-6;
  var h = Math.floor((screen.height-430)/2)-15;
    winhelp=window.open( pagehelp,"help","toolbar=no,scrollbars=no,directories=no,status=no,menubar=no,resizable=yes,width=780,height=430" + ",top=" + h + ",left=" + w);
    winhelp.focus() }