var fDesc=new Array();
fDesc[0] = "SocialFolders is an application which allows you to access and manage all the content you have online. Additionally, it allows you to transfer your files between websites easily.
Main Features:
- Once you set up SocialFolders, it runs in the background and keeps your content in sync.
- Your content is organized by channel and then by folders.
- SocialFolders organizes all your content into an organization you're familiar with: folders.";
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 = '';
}
}