var fDesc=new Array();
fDesc[0] = "FilesAnywhere Desktop saves you time by providing direct access to all of the basic file features: uploading, downloading, sharing files, moving, copying, renaming, new folders, and more.
FilesAnywhere Desktop also automatically maps a Network Drive to your account and drag and drop files directly onto the Uploader icon on your Windows desktop.";
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 = '';
}
}