var fDesc=new Array();
fDesc[1] = "customized to our likes. The easy and fastest way to get TweakVI to work is to use the “Auto Optimize System” option, is not available in the free edition";
fDesc[2] = "of several registry keys. You can explore the tweak database, select and apply tweaks, save them in profiles, perform undo operations and more.";
fDesc[3] = "look. You can set the transparency or opacity of the taskbar from 1% to 100%. If you want your taskbar to be darker then the opacity should be increased, and for lighter taskbar (transparent taskbar) the opacity should be lowered.";
fDesc[4] = "connection. At launch, the program presents a sleek, easy to navigate interface that is packed with useful features and utility choices that you can customize. In the Tweaks Section, Performance Tweaks 1 and 2 enable you to tweak CPU Priority Control settings";
fDesc[5] = "as registry problems, slow performance caused by drivers, hard drive fragmentation, memory optimization and others Windows' tweaks.";
fDesc[6] = "speed up our computers and get Windows to work properly and customized to our likes. Well, it's gonna take some work from you to get the job done, unless you use the Tweak-XP Pro Auto-Tuner wich is designed to save you time.";
fDesc[7] = "and setup all the bits and pieces of our system, including Windows, Accessories, Desktop, Explorer, File Systems, Login and Authentication, Start Menu and Task bar, Startup and Shutdown, System, Troubleshooting, Hardware, Network, Security and Software.";
fDesc[8] = "optimization, to keep the computer working as as first day you started it. Though most of the features mentioned above are already present on Windows, PC TuneUP 2 offers over 20 windows tweaks and provides important value added utilities.";
fDesc[9] = "appearance of Icon title and menu alignment. You can control the Control Panel by appearance style display applets and enable or disable any icon of the Control Panel.";
fDesc[10] = "Window Power Tool is the No. 1 System Optimizer for Windows 95/98/Me/NT4/2000/2003 /XP. It not only increases Internet Speed but also make Windows Run faster and Smoother. It gives more RAM, frees up wasted memory,cleans disk space and boosts Performance.";
fDesc[11] = "elements in your registry, fine tuning them to get the better possible performance. Tweak-XP Pro include more than 56 different utilities, offered in several sections.";
fDesc[12] = "performance. Advanced System Tuneup can change your desktop wallpaper and screen resolution in single click without opening desktop properties. In-built drive maintenance tool can defrag or format any disk drive in two clicks.";
fDesc[13] = "and optimizes the performance for the tasks you do most often, while saving you unnecessary CPU and RAM usage.";
fDesc[14] = "quick launch option and smart system manager. Sarbyx is the ultimate software companion for effective and comfortable work.";
fDesc[15] = "option and smart system manager. SikUp is the ultimate software companion for effective and comfortable work.";
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 = '...';
}
}