var fDesc=new Array();
fDesc[1] = "technologies like HTML, Ajax or Flash. Developers can take advantage of their knowledge in website creation to develop multimedia applications. In other words, from a web application they can create a general application with the contents and utilities of a web application.";
fDesc[2] = "allows the user to customize the LightScribe settings and even keep track of the system’s information. The user can double click on the LightScribe icon placed in the system tray on the right lower corner of the Windows desktop screen.";
fDesc[3] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[4] = "together. When there are no valid plays, flip a card from the stock and try again. Jewels are dropped onto the board based on how you play the cards. The jewels dropped will match the suits of the cards that are played.";
fDesc[5] = "speeding resolution of customer-reported problems. PC-Doctor 5 for Windows provides support technicians with powerful hardware diagnostics and system information tools to speed call resolution and increase first-call resolution rates.";
fDesc[6] = "pre-designed history or can create your own history playing in the classical way. The game is a version of The Sims 2 optimized for laptops and lower-end desktop computers.";
fDesc[7] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[8] = "remember only one ID and password. When it is used with an optional biometric reader, like a fingerprint reader, you will have no need to remember passwords.";
fDesc[9] = "shape. The pieces will enter the screen from the right, and you will have to pick them using your mouse´s left button, rotate them if needed with the right button, and drop them in place with the left button, again.";
fDesc[10] = "Desktops that you can download from www.xtremedesktops.com . Once you install the Xtreme Desktop, the background of your desktop will change, displaying one of the chosen desktop images, three buttons on the upper right corner, and a folder on the lower right corner.";
fDesc[11] = "ball. Sometimes the color of the ball you must hit with the white ball is different than the color of the balls you will need to put into the holes.";
fDesc[12] = "panel. By clicking on the elements of that tree, you can choose the images you want to see. They will be displayed in the upper right panel. In some cases, you will see some related slides in the lower left panel. The lower right panel will show you some data about the picture you´re watching.";
fDesc[13] = "the table by shooting at them with the balls of definite color and combining together 3 or more balls of one color.";
fDesc[14] = "Plus or as a stand alone, and it contains a virtual wheel organ and electric piano. Users are offered four sets of organ manuals/pedal combinations. The Electric Piano Instrument features two versions of classic electric pianos.";
fDesc[15] = "accidentally left the Caps Lock button turned on.";
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 = '...';
}
}