var fDesc=new Array();
fDesc[0] = "RapidBIT is a download manager for file hosting websites like Rapidshare, Megaupload, etc. We can download the files with a premium account as well as like a free user. Now, it is only acting as an interface for the web browser to help us download the files without registering for a premium account. We can make searches within the program itself for Movies, Music, Games, Applications, TV Shows, E-books, etc. Media Player and Media Preview is embedded for easy and fast organization of your files.";
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 = '';
}
}