var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to store their contacts to a database. This application can save and quickly retrieve all the information needed to contact a person without all of the bulky extra features that come with other products. With space for phone numbers, email address, website, and notes, this application saves the essential contact information and provides flexibility. With simple to use search capability, finding a contact, quickly, couldn't be simpler."; 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 = ''; } }