var fDesc=new Array(); fDesc[0] = "The H2 Viewer allows you to view MS Help 2 collections. Like the MS HTML Help 1.x viewer it has a standard tri-pane window layout.

H2Viewer Features:

- View any MS Help 2.x collection or HxS file.
- Advanced COM interface and Command line options.
- Filter Edit dialog works with non-MS collections.
- MS SAPI 5.x Text-To-Speech will read the Topic text.
- Simple UI."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }