var fDesc=new Array();
fDesc[1] = "defaults preference for the windows media player. Most of the time it so happens that after you install many softwares or codes, a video file may not play in windows media player or Media Center. This can be corrected by using this program.";
fDesc[2] = "computer, there has been a sudden crash or it is going suspiciously slowly we can very easily download and set up this program to see what is wrong and get help from their experts.";
fDesc[3] = "system for fast processing. You can fix all the problems related to Firefox, Excel, Explorer, Internet Explorer, Media Player, Security, Networking, Performance, Startup, Services and Word in single click.";
fDesc[4] = "your computer. What I liked about the program is its intuitive and attractive user interface which will surely make this task a breeze.";
fDesc[6] = "protection of your computer. The first one is a manual scanning which can be started whenever you like by a single button click. Another one is a real-time protection which can catch them before being installed on your computer.";
fDesc[7] = "system working safer, longer, and better by making sure it's fully updated.";
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 = '...';
}
}