var fDesc=new Array();
fDesc[1] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
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] = "quality and premium performance. Today, Conexant offers a line of industry leading HD-Audio codecs, including marketing value-added Voice Processing Algorithms Digital Signal Processor (DSP) software, optimized for PC Motherboard integration for worldwide operation.";
fDesc[4] = "an all-region DVD. The users can watch the film directly on their PCs, with any movie player like PowerDVD or WinDVD, or burn a new copy of the DVD without restrictions.";
fDesc[5] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[6] = "customizable computer within your desktop! Without the need of formatting, or getting an additional computer, with this application you can test drive an operating system, software, or a configuration and see if it fits your needs!";
fDesc[7] = "contains a powerful search tool that lets you find and download sound files (mp3, wav, midi, etc.), Image or video (movies, trailers, jokes, graphics) on the Internet.";
fDesc[8] = ", search for unnecesary files, manage the start up menu so you can change whatever you might need, shortcuts that have become invalid, check the disk free space in your HD unit, manage the add/remove programs list, etc. to get the best results on your system operation, perfomance and speed.";
fDesc[9] = "Bin, etc. from every drive in the system. The user interface is nice and the program has several (10) languages to choose at the begining of the operation.";
fDesc[10] = "will be able to open FLV files and watch them with an excellent image quality. The FLV files are the files used to deliver video over the Internet. The video files you download from YouTube and other video-sharing websites are FLV files.";
fDesc[11] = "and essential tool in keeping your registry defragmented. As a result, the Registry becomes compact and small, greatly improving your computer performance.";
fDesc[12] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[13] = "modified version of the game is used by the US Marines. There are so many options and features that make this game just great. If you haven't played it yet, you certainly should.";
fDesc[14] = "aim is to destroy the detachments of the terrorists. You are located in the trench and have weapons at your disposal.";
fDesc[15] = "population of the planet. Well-equipped detachments of enemies spaceships stand in your way.";
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 = '...';
}
}