var fDesc=new Array();
fDesc[1] = "away, as if you were sitting in front of it. You can hear alert sounds, use your files, print remotely, transfer and synchronize files, link local drives to connected PCs and more.";
fDesc[2] = "difficult levels, timer, and option of pencil mark and wrong move prompt.";
fDesc[4] = "uses the Treo phone feature to use data and allows you to connect your PC to Internet. PdaNet for Treo works for Treo 650 and 680 for other models take a look at the website. The platforms to run the software are Vista/Windows XP/ME/2K.";
fDesc[9] = "exchange. It has the unique ability to export the card in the background mode allowing you e.g. to transfer MP3s simultaneously with web browsing. Supports all modern PalmOS devices, such as palm Centro, Treo 755p, Treo 700p, Treo 680, Treo 650 etc.";
fDesc[11] = "anywhere, without any compromise, wirelessly or by desktop synchro. Perfect companion for Palm Treo and Centro.";
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 = '...';
}
}