var fDesc=new Array();
fDesc[1] = ", removable drives (ZIP/JAZZ), flash devices, and RAID arrays. The program measures the physical performance of the devices.";
fDesc[2] = "download speed and browsers (Internet Explorer and Mozilla Firefox). This excellent program will improve your online speed when surfing the net with your browser while keeping the original website quality.";
fDesc[3] = "samples of your system or Internet speed at regular intervals. If you want to test your hardware, you can order SpeedTestPro to check the speed of your CPU, Memory, Drives, Uptime and Disk Write and Read Speeds.";
fDesc[4] = "stability and controller test. Is the hard disk drive monitoring and failure prediction and repairing software for repair and testing. It uses S.M.A.R.T. technology to monitor the health status of hard disk drives, prevents data loss and predicts possible drive fail. This application include HDDBadSectorRepair.";
fDesc[6] = "connection. The program downloads a file from a Microsoft server (or any other server of your choice), analyzes the measured data and reports your speed.";
fDesc[7] = "to troubleshoot your Smart BRO broadband connection problem if you use this Quick Fix Tool. Quick Fix Tool is specifically developed to diagnose your Smart BRO Broadband connection problems.";
fDesc[15] = "bandwidth test results in a database so you can create charts.";
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 = '...';
}
}