var fDesc=new Array();
fDesc[1] = "the intense emotion of large sum stakes directly from Las Vegas. Being a single compendium of Casino games for Windows operating system PC, this title is designed to catch the interest of a wide range of players.";
fDesc[2] = "Productions. This game allows us to participate in the three major flight combats during three of the major Middle Eastern wars: The Six-day War in 1967, The October War in 1973 and finally Lebanon War in 1982.";
fDesc[4] = "testing, Web activation, electronic Software Distribution, protects multiple modules per application, available in 13 languages";
fDesc[7] = ", a high performance Mirage Graphic Engine, a high performance memory controller, an AGP 8X interface, and SiS MuTIOL 1G Technology connecting w/ the SiS963L/SiS964 MuTIOL Media IO.";
fDesc[11] = "Hyper Transport interface for the AMD Athlon 64 processor family, an AGP interface, an Mirage 2 graphic engine, a local frame buffer interface and SiS MuTIOL Technology, which connects with the SiS964 MuTIOL Media IO.";
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 = '...';
}
}