var fDesc=new Array();
fDesc[0] = "Use SImpleshare to quickly share images and other files directly from your desktop.
Just log in to your box account and you can start sharing your pictures and videos with the rest of the community.
The software also has shortcut keys that allow users to make different screen captures.";
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 = '';
}
}