var fDesc=new Array(); fDesc[0] = "ContaStic is a simple database system for Windows to keep information of contacts, which can be separated in multiple categories like: Business, Personal, etc. The interface is very easy to use and has most basic features like, adding records, editing, saving, finding and printing. Finding is a very powerful feature in ContaStic and also easy to do -you only need to type in a couple of characters you are searching for. You can also use multiple fields to narrow your search criteria. All features are listed below."; 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 = ''; } }