var fDesc=new Array();
fDesc[0] = "With Soonr, you can access and share files with your team from any device, anywhere.
Main Features:
- Dashboard: The Dashboard is your integrated overview of all your recent Project activities. You can instantly and securely view all your files. It automatically lists comments and changes your Team makes to documents chronologically.
- Projects and sharing: Safely manage, organize and share files with your team using Soonr.
- Mobile: Soonr's powerful features work on all the major smartphones and tablets including iPhone, iPad, Android, Android tablets, Blackberry, etc.
- Teamwork: Manage your teams centrally with our easy-to-use interface.";
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 = '';
}
}