var fDesc=new Array();
fDesc[0] = "Appraise allows you to create and save Portfolios on your computer. You can then create an alternate date of death portfolio and, delete or add new securities. When you resubmit your portfolio for pricing, Appraise will only charge you for new added securities.
Securities can be sorted by CUSIP number, security type or alphabetically. In addition Appraise's IRS mode allows you to enter values from the taxpayers' return into the program (security value and dividends/accruals) and let it flag any differences on the report.";
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 = '';
}
}