var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to store private diary content. Start a journal by selecting "New Journal" to enter the name and password. Entries are organized by date, and any number of entries can be made per selected date. The user friendly interface makes content creation a breeze. Entries are searchable and can also be exported to text or MS Word file format. This software saves you time by automatically protecting and organizing your confidential information."; 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 = ''; } }