var fDesc=new Array();
fDesc[0] = "Descripto allows users to easily create private and secure notes on your Skype contact.
Main Features:
- Automatic retrieval of all Skype contacts
- Local storage of all data in XML
- Contact selection from Skype. Clicking a contact on Skype's contact list causes Descripto to display the notes of the selected user.
- Print service with preview for notes
- Password protection
- Import and export of data file
- AES-128 encryption of data - See Security notes below
- Auto-save";
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 = '';
}
}