var fDesc=new Array();
fDesc[0] = "Drag-Drop Form is a Portable, Password Manager and Form-Auto-Fill tool.
Drag-Drop Form encrypts your login URL, your username, password and other information such as credit-card number, E-Mail address, phone number and the words and sentences you use frequently.
Drag-Drop Form displays a docking window into which you can drag and drop your username, password and other information to the web form.";
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 = '';
}
}