  function OpenHelpWindow(url, name, width, height)
  {
	var top = (screen.height - height)/3;
	var left = (screen.width - width)/2;
	wnd = window.open(url, name, "scrollbars=1,width="+width+",height="+height);
  	wnd.moveTo(left, top);
  	wnd.focus();
  }
