var fDesc=new Array(); fDesc[0] = "The Help Generator for Visual Basicis a program that allows you to create Visual Basic help files. The program scans the application forms and creates all needed files with content. The generator automatically integrates the help with your application. In the edit step the descriptions are added to the prefabricated help sections."; 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 = ''; } }