var fDesc=new Array();
fDesc[0] = "Federal Money Retriever is the premier software for organizations and individuals interested in applying for U.S. government grants and loans.
Money Retriever® helps grant seekers in:
- understanding the process of obtaining federal grants or loans
- searching for federal grant and loan programs matching grant seekers' needs
- quickly creating a set of pre-application documents for a particular grant or loan program";
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 = '';
}
}