var fDesc=new Array();
fDesc[0] = "Financial Fate is in- depth, long-range financial planning software designed for the do- it- yourselfer. Financial Fate is the first and the only software product of its kind which is Cash-flow-driven, fully-verifiable, and fully-automated.
This simply means that is powerful, easy to use, and all relevant report are detailed and available for review .";
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 = '';
}
}