var fDesc=new Array();
fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[2] = "you're looking for. You can easily reach any information; director, writer, genre, cast, plot outline, awards, original music, cinematography, user rating etc. about movies you add to the program from the web sites such as IMDB by just pushing a button. If you'd like to print the screen display, you can design any report as you wish through the agency of the editor of report templates. By giving numbers, you can catalog your DVDs and CDs. With devisable HTML interface you can get a view at any style you'd like to. You can reach movies quickly with the modules of quick search and advanced search on the main menu of the program.";
fDesc[4] = "anyone who works on a computer. It tracks your hours on a per project basis, calculates overtime, manages your absences and prints reports.";
fDesc[5] = "you to train different topics by playing.";
fDesc[6] = "automatically shutdown, restart or log off your system with power off/shutdown forcing option. Many other built in functions. 12/24 hour time format.";
fDesc[7] = "The questioning may be analysed statistically.";
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 = '...';
}
}