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