var fDesc=new Array();
fDesc[0] = "The GlobalMojo Giving Assistant helps you generate money for your favorite charitable causes. Once you make a purchase, that partner site happily pays GlobalMojo a percentage of the purchase cost for having sent you along. A commission, if you will, that comes from the companies pocket. GlobalMojo puts 25-50% of that commission revenue into your GlobalMojo account, in the form of MoDough.";
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 = '';
}
}