var fDesc=new Array();
fDesc[3] = "lethal lawyers to destroy the city. The gamer must stop his lawyers and put an end to Max Fees. The gamer has to be careful from the female lawyers, as they love to attack from behind.";
fDesc[8] = "more study of legal rules in your state. It is called \"Perfect Wills, Living Wills, Trusts and Estate Planning\". Perfect Wills, Living Wills, Trusts and Estate Planning is a smart tool available with more than 200 Custom Legal Documents.";
fDesc[9] = "performed without a learning curve requiring extensive training! Even share the data with others on your network!";
fDesc[11] = "of built in forms that are legally binding and valid in all the fifty states. The easy to use search feature of the Perfect Attorney Platinum helps the user to search legal descriptions. One can create wills and trusts using this software.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}