var fDesc=new Array(); fDesc[0] = "LibreOffice is a free Office Suite, featuring a word processor (Writer), spreadsheet (Calc), presentation tool (Impress), database manager (Base), formula editor (Math), and image editor (Draw). LibreOffice is compatible with a wide range of document formats such as MS Word (.doc, .docx), Excel (.xls, .xlsx), PowerPoint (.ppt, .pptx) and Publisher. It also has native support for Open Document Format (ODF)."; 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 = ''; } }