var fDesc=new Array();
fDesc[1] = "YAHOO the software giant has introduced its new innovation a form of preventive software to spyware,viruses,malwar e,spam and unsolicited emails.As they say prevention is better than cure,it holds apt in here as with YAHOO SEARCH PROTECTION you can have a protective layer around you PC";
fDesc[2] = "in the latest versions. The emulator is capable of running Playstation 2 games at decent frame rates and it emulates every single feature of the original PS2 console.";
fDesc[3] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
fDesc[4] = "the CD in the drive. It works just as well with a network file server. Running programs from your CDSpace virtual drive is about 200 faster than doing it from the CD.";
fDesc[5] = "have a GUI called MKVmerge GUI. It is a graphical interface for the command-line application. It has an unbelievable list of supported input formats.";
fDesc[6] = "one picture you are looking for. Use the picture of a famous movie celebrity, a comic, or the singer of your favourite band, to make the perfect joke, amuse your friends, or just to have a good time while creating some bizarre pictures.";
fDesc[7] = "these files to different recipients into an email service. WinZip E-Mail Companion 2.0 it’s a software that will help you to avoid the action of the e-mail returned, because the attachment exceeded the size limit. You will never get an e-mail returned anymore!";
fDesc[8] = "You will encounter perils on your way. There will be enemies on every level, which you will have eliminated.";
fDesc[9] = "and doesn’t require any other software to be installed on your system. It is a very useful tool to optimize PDF documents for fast viewing in the system, as well as for web viewing. It also helps in reducing the size of PDF file and improving its reliability.";
fDesc[10] = "returned as the ultimate break for your brain. Only those with strategic sense and careful clicks will be labeled a Puzzle Genius. Can you remove all the blocks from the screen in the fewest possible moves?";
fDesc[11] = "artists and then returns all songs that match your search criteria. You can print or export the song lyrics and even watch the video clips.";
fDesc[12] = "some forms regarding members, books specifications, books lent and books returned. The program will notify you with all the books' return dates and remind you about the books that aren't returned after the return date.";
fDesc[13] = "you find, select and delete the bounced emails that are returned to your pop3 account. It can also check a text file for bounced emails.";
fDesc[14] = "Pajitnov, who derived its name from the Greek numerical prefix tetra, has returned. The falling shapes are composed of four square blocks each; the object of the game is to manipulate these shapes and form lines to destroy them.";
fDesc[15] = "program that has now returned with improvements and new features. The KORG M1 synthesizer is known for its realistic sounds and the unique characteristics of the tones.";
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 = '...';
}
}