var fDesc=new Array();
fDesc[0] = "Comodo i-Vault Secure Password Management Software
Highlights:
* Instantly login to your favorite websites and applications
* Speed up surfing - No more forgotten passwords
* Single point of storage for all your confidential information
* 256 bit encryption of credit card and bank account details
* Secure Password Generator instantly creates complex passwords
* Supports multiple users on a single machine
* Anti Keylogging feature- stop hackers monitoring your personal data
* 'Drag 'n' drop' interface -Windows ease of use";
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 = '';
}
}