var fDesc=new Array();
fDesc[1] = "and the eerie atmosphere is still there. However, the storyline lacks depth here and it is a just decent closure to the Penumbra series.";
fDesc[3] = "window. This pop-up creation program provides additional scripts and tools, including a mini HTML editor, making it easier for you to create your own pop-up windows.";
fDesc[4] = ", agenda, actions and closure. Audio signal is compressed in real-time, easy to export/import and listen in transcription playback mode.";
fDesc[5] = "configuration is required. It acts as an email server and does not need SMTP server.";
fDesc[6] = "more adventurous and challenging you to save an old museum run by a Dr. Livingstone. New artifacts need to be donated to the museum to save it from closure by encouraging more visitors to view these rare objects.";
fDesc[7] = "seamlessly with AutoCAD but is not required as CAD Closure has a built-in viewer. Multiple reports formats available.";
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 = '...';
}
}