var fDesc=new Array();
fDesc[1] = "WinOptimizer can clean your internet and PC history and clean all the junk files. You can clean your windows registry to get rid of unused registry entries and save your system from registry corruption and errors or you may like to make your private data password protected.";
fDesc[2] = "uninstallations, that might have left behind unnecessary trails. It cleans history and cache from Internet Explorer, Start Menu and Directory recent activity, Instant Messaging activuty, Windows Disk Error Temp Files, Windows Document History, Windows Temporary Files, etc.";
fDesc[3] = "function is very similar to the Opera/Firefox-style mouse gestures. You can configure which action each mouse gesture will execute when you perform it, you can even configure your own tasks.";
fDesc[4] = "user selectable cursor trails which instantly interact with your mouse cursor producing exciting effects.";
fDesc[5] = "scenic landscapes. Enjoy the real time smoke trails and fully customizable weapon economy with up to 16 players.";
fDesc[6] = "traps, while your time was running. Blazing Trails is a remake of this classic game with new graphics and sounds. Maybe you will remember those days when you used to play Trailblazer.";
fDesc[8] = "comments made by other people as you browse the net. The application allows you to add your critiques in the form of electronic notes that will be shown to other visitors when mousing over the marker.";
fDesc[9] = "beautiful pictures and forming an endless variety of stunning patterns.";
fDesc[10] = "confidential information. Nobody will ever be able to recover the files! A necessary tool for every Windows user.";
fDesc[11] = "accessible, spreadsheet-like format. You can selectively remove items, and sort, group, search, print, and export everything.";
fDesc[12] = "the web net. Visited web pages, i.e. Internet history, cookie files to let the browser remember which pages user has visited already, all the typed URLs that user has entered to the path (address) bar on the Internet browser, etc.";
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 = '...';
}
}