var fDesc=new Array();
fDesc[1] = "the most of these icons no longer match the style of the current Windows operating systems. This LITE version in not compatible with large icons (128 x 128 pixels)";
fDesc[2] = "coolest theme: Luna Royale. It includes the Aero cursors as well as system icons (My PC, My Documents...) and all the system sounds from Windows Vista.";
fDesc[3] = "fast-paced action and a lot of detail everywhere. Characters are all identical to those in the movie. The game itself could be considered a prequel to the movie, but I don't want to get into spoilers.";
fDesc[4] = "going to travel to the Caribbean in 17 th century. You can choose between English, French, Spanish and Dutch Caribbean colonies, with eight different scenarios.";
fDesc[9] = "movie The Dreamers. This screensaver features Eva in lots of sexy and revealing photos.";
fDesc[10] = ", Deuces Wild, Deuces and Joker, Jacks or Better, and Joker Poker, Keno, plus sixteen types of Video Slots, and thirty-six types of Classic Slots. We can get support online; see the hot games, etc.";
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 = '...';
}
}