var fDesc=new Array();
fDesc[0] = "Got lots of documents to publish? Use the Scribd Desktop Uploader to easily upload files from your hard drive. It comes with these features:
- Upload many files at once from your desktop.
- Edit titles, tags, and other metadata before uploading.
- Quickly and easily manage bulk uploads, straight from your desktop.
- (Windows Only) Save your favorite settings as shortcuts and then drag & drop files/folders onto a shortcut to upload to Scribd in one simple step.";
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 = '';
}
}