var fDesc=new Array();
fDesc[0] = "ShareFile Drive Mapper allows users to connect to their ShareFile account and interact with ShareFile via a “mapped drive” in the Windows file system, without performing a full sync of their content. The program is designed for personal desktops as well as integration with XenApp and XenDesktop environments.";
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 = '';
}
}