var fDesc=new Array();
fDesc[0] = "DropSend Outlook plug-in allows you to send large files directly from your Microsoft Outlook.
Features include everything you get through DropSend on the Web Plus:
-Send directly from you Microsoft
-Auto Resume Support for broken file transmissions.
-Faster Upload (4x Faster) by using multi-threaded file transfer technology.
-Files are compressed before sending to save time and bandwidth.
-No mail bounce-back.";
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 = '';
}
}