var fDesc=new Array(); fDesc[0] = "Contact Manager is an address book application that allows you to easily manage your contacts. You can group contacts. Saving and editing contacts is very easy. It has very simple but powerful searching capability. You can search your contacts by typing any part of their saved information e.g. few digits from phone numbers or their email domain e.t.c."; 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 = ''; } }