var fDesc=new Array();
fDesc[0] = "TreasureTrooper is a free service that provides you with several money-making opportunities. Simply register by providing your name, email address, password, and payment information. You will receive a confirmation email shortly after.
Refer your friends to TreasureTrooper and get an extra 20% of all of the offers they complete for life! In addition, you'll get 5% commission from anybody that your friends refer. You can literally make hundreds of dollars this way!";
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 = '';
}
}