var fDesc=new Array();
fDesc[0] = "Proinfocus Address Book 2010 is a Contact Manager.
Features
» Create and Manage Contact under Groups
» Generate Labels for Invitation for Home or Office Address
» Send SMS* to All, Chosen Group or Contacts
» List out Birthdays, Anniversaries and Appointments
» Generate Delivery Confirmation Sheets
» Import and Export All Contacts between Users
» Import and Export Selected Group Contacts between Users
» Search Contacts for their Mobile Numbers";
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 = '';
}
}