function showHelp (path) {
  var win = new Window({id: 'helpWin', className: "darkX", width:350, height:400, zIndex: 100, resizable: true, title: "Help", showEffect:Effect.Appear, hideEffect: Effect.SlideUp, draggable:true, wiredDrag: true, destroyOnClose: true})
  win.setURL ('/help/' + path);
  win.showCenter(true);
}
