var fDesc=new Array();
fDesc[0] = "EasyPIM is a personal information manager that allows you to keep all your information in electronic form. All your appointments, tasks, notes, contacts, password entries and email messages are stored in a graphical user interface and easily accessible form. General Features :
- Easy to Use
- Powerful Graphical User Interface
- Highly Secured User Level Password Protected
- Code less - No Codes to Remember
- Multi Database
- Support Windows 2000/XP/Vista/Windows 7
- Bulk SMS integration";
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 = '';
}
}