var fDesc=new Array();
fDesc[1] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[2] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[3] = "increase your PC’s performance while you are working. This utility will automatically switch the foreground program to the highest priority. This program can also increase you PCs free RAM, increasing the general performance of your computer as well.";
fDesc[4] = "the performance of the system by free up unused RAM.It helps to reduce crashes, freezing and stopping applications and Windows system in general by monitoring your memory all time and taking the necessary actions to avoid problems due to memory.";
fDesc[5] = "just a few minutes to release wasted space on your hard drive. Fix registry by few clicks. Remove unnecessary programs from autorun. It's simple and useful.";
fDesc[6] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[7] = "crashes. No modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[8] = "allows you to change various settings in the Windows Registry. These settings can improve the performance of your computer.";
fDesc[9] = ", comprehension and stamina. With 15 minutes of training a day you make remarkable progress within 10 days! Try it now for free!";
fDesc[10] = "Programs take a long time to open. Games stall while loading. Are you also under the impression that your PC's performance is getting worse?";
fDesc[11] = ", MemoryCleaner performs fast and powerful memory sweep, removing wasted memory blocks, and thus providing much more free RAM.";
fDesc[12] = "No modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[13] = "system using 450+ tweaks and 5 utilities: Start-Up Manager, Uninstaller, Cleanup Center, Disk Cleanup and XP Styler.";
fDesc[14] = ", protect and optimize your .NET assembly, minimize distribution size, increase performance & add powerful post-deployment debugging capabilities.";
fDesc[15] = "allowing you to convert audio files of WMA, MP3, OGG Vorbis, WAV PCM format to all these formats including resampling.";
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 = '...';
}
}