var fDesc=new Array();
fDesc[1] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[2] = "With Dell Webcam Center, you can perform photo and video captures or perform advanced tasks such as remote monitoring, motion detection, and time-lapse video capturing.";
fDesc[3] = "Security... that won?t slow you down!";
fDesc[4] = "us analyzing the changes made to our Windows Registry. We can download the trial version available from the developer’s website, and evaluate it for a 30-days period, after installation.";
fDesc[5] = "our hard drive. Once downloaded, we can go offline and use its built-in browser to view, browse, edit, and search them. It allows us to create E-books with our downloaded information and burn them to a disk. The New Project Wizard will provide systematic instructions.";
fDesc[6] = "keyword or phrase in 30+ languages (Unicode supported). It works through Google API and is extremely fast. Get it now!";
fDesc[7] = "networks. The program allows you to share most types of Internet connections with your entire network, , allowing multiple users to simultaneously surf the web, retrieve their email, or chat with online messaging, as if they were directly connected to the Internet.";
fDesc[8] = "you several actions that you can set for your computer in the case that it gets stolen. Now, for this application to really work, you need to set up an account on the website.";
fDesc[9] = "Transaction, DNS, SMTP, POP3, FTP, SNMP, as well as various native Windows system sensors and native SQL sensors for MS SQL, MySQL and Oracle.";
fDesc[10] = "SMTP, POP3, FTP, TCP. It can log the server performance, generate real-time reports, and notify you upon detection of problem or error.";
fDesc[11] = "site's traffic to life, casting your visitors as animated characters in a virtual city. Dozens of reports. Integrated Live Help. Click analysis + more.";
fDesc[12] = "tool you may constantly check the response from your server and make sure that your website is online 100% of the time.";
fDesc[13] = "features: Multiple URL check, HTTP, HTTP with authentication check. Uptime statistics reports, charts and diagrams are available.";
fDesc[14] = "free version monitors 10 IPs.";
fDesc[15] = "log the server performance, generate real-time reports, and notify you upon detection of problem or error.";
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 = '...';
}
}