var fDesc=new Array();
fDesc[1] = "a grade as well as the fashion show overall. The game has a good presentation, a good and challenging game mode and good items. This all adds up to a very recommendable game.";
fDesc[2] = "female detective in the recently-formed Vigilante Unit. Your first case has to do with a husband who's suspected of trying to kill the people responsible for murdering his wife and daughter.";
fDesc[3] = "With this program, you will be able to add transition effects to your slideshows and more. The program enables users to add audio files into the slideshows in a very easy way.";
fDesc[5] = ", Retirement Analysis, Personal Budgeting, Investment and Savings calculations, Future & Residual Value calculations, and much more.";
fDesc[8] = "introducing variables that include initial balance, periodic payments, interest of your investments, start and end dates so you can have an idea of the amount of money you can save with certain behavior.";
fDesc[10] = "Continually updated since 1995. Are you saving enough for retirement? This software will tell you.";
fDesc[11] = "retirement plan.* know how much you need to save for retirement.* understand retirement plans and how they work.* understand the time value of money.* start thinking about how much income you will need in retirement.* help you determine your options if you aren't saving enough.In short, Retirement Planner software will help you plan for a better retirement. For something so important, don't you want to be absolutely sure you will be financially ready?";
fDesc[13] = "market variability.";
fDesc[15] = "Forecast + CPI historical inflation. Statistics, Scientific & Graphing calculator to solve algebraic equations, derivatives and integrals.";
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 = '...';
}
}