var fDesc=new Array();
fDesc[1] = "digital images. You can download your images from your camera in a few seconds. Then, you can create slideshows with background music or add special effects to your photos. Finally, you can send your photos by e-mail to share them with your friends.";
fDesc[2] = "time, landing in random places. Now, to ensure her wedding goes off without a hitch, Jill herself must travel through time and work quickly to get herself and her guests back before the ceremony begins.";
fDesc[3] = "superior playability. This demo allows you to race on two different tracks, with two different cars. The first car is a BMW 320Si and a Ford Mustang GTR muscle car.";
fDesc[4] = "explorer window. Options include changing of first letter to uppercase, all letters to uppercase/lowercase and more!";
fDesc[5] = "in the same Excel file or two different Excel files. Excel 2000 or higher required.";
fDesc[7] = "higher required.";
fDesc[8] = "different Access files. Access 2000 or higher required.";
fDesc[9] = "individual sheets per file. Each comma in the file is used to create an Excel column. Excel 2000 or higher required.";
fDesc[11] = "created with the results. MS Access 2000 or higher required.";
fDesc[12] = "or individual sheets per file. Calc 2.0 or higher required.";
fDesc[13] = "altered but a new table is created with the results.";
fDesc[14] = "higher required.";
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 = '...';
}
}