var fDesc=new Array(); fDesc[0] = "This a desktop application, written in VB.Net, that automates printing from the main Office applications, plus the full Adobe Acrobat. This version of the program adds some logging capabilities, but lacks the ability to control Adobe Reader that its predecessor had. The reason for this lost support is that Adobe Reader only supports DDE automation, and DDE automation is not included natively in VB.Net the way it was in earlier versions of Visual Basic."; 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 = ''; } }