var fDesc=new Array(); fDesc[0] = "EasyOpenOffice is a set of classes and templates providing you an ability to use OpenOffice from your Clarion applications. EasyOpenOffice supports Clarion for Windows ver. 5.5 and 6.3/7./7.3. EasyOpenOffice Class and Templates supports 32 bit applications (Clarion and ABC template chains). OpenOffice not less than one of the builds of ver. 2.0 should be installed on the developer's and customer's computer."; 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 = ''; } }