var fDesc=new Array();
fDesc[1] = ", DVD-RWs, DVD+Rs, DVD+RWs, DVD+R Dual Layer and DVD-RAM. The program is itself pretty small and does not suck your system's resources as other burning applications do.";
fDesc[2] = "have to sort the similar colors together in order to get an atomic reaction. Atomica has two modes of game-play, a strategic turn-based mode and a fast-paced real time mode. This game will definitely take up some of your time if you play it.";
fDesc[3] = "mercenary in the pay,your boss is the M.A.G.M.A. Corporation which have made a huge discovery, they found a portal which its connected to another dimension, and a lot of aliens appears.";
fDesc[4] = "website's pictures, movies, songs, videos and other contents easily. The program supports resuming broken downloads.";
fDesc[5] = "aliens. The story tells that a man was able to bring together other men and fight against them. Then that hero was killed but the human race realized that the war just";
fDesc[6] = "character is an Asian detective who can apparently dodge bullets left and right without even sweating a drop. When I first played this game, I couldn't help thinking about Max Payne.";
fDesc[7] = "not an antivirus or anti-spyware to guard your browser. It is a shortcuts toolbar for the online Web Cockpit program from Simpleology for quick access its features. Presently Simpleology Browser Bodyguard only supports Internet Explorer.";
fDesc[8] = "website and store it on your local hard drive for off-line use.";
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 = '...';
}
}