var fDesc=new Array(); fDesc[0] = "A straight forward text to speech application. All text input is carried out through the clipboard. Settings allow Orato to read either on demand or automatically when new text is added to the clipboard. Other options will display the text if required, with highlighting of the word or sentence being spoken. Orato can either be installed to the hard disk or copied onto a pen drive for portable use."; 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 = ''; } }