var fDesc=new Array();
fDesc[1] = "applications called gadgets, those gadgets offers us a quick access to different tools or functions that may be useful on our daily duties. Microsoft included a little list of gadgets with their sidebar, however there are much more available on vistagallery.microsoft .com.";
fDesc[2] = ", eliminates clutter, automatically repairs errors and more. The System Mechanic interface displays these main features: Dashboard which analyzes and repairs problems, ActiveCare for automate maintenance, Tools which runs specific tools and Reports for feedback.";
fDesc[3] = "Security... that won?t slow you down!";
fDesc[4] = "last minute headlines from the user specified news websites, showing them on the PC desktop with a very attractive and customizable interface. KlipFolio is runs in the background, with a minimum consumption of resources.";
fDesc[6] = "reconciliation, journal, point of sale, edit customer, edit supplier, edit inventory items, graphs and financial rates, business intelligence center and dashboard, pastel cash manager, explore, note facility, internet and help file.";
fDesc[7] = "private label rights ebooks, articles, membership site login details, and more.";
fDesc[8] = "Excel, HTML, CSV. Chain Multiple SQL Queries in one view. Drill from one query to another,Feed output of one SQL as input to another SQL query.";
fDesc[9] = "to organize, monitor and manage all the resources available on your network. HQ installs the server and the HQ Agent and through the dashboard we can control and monitor all the network resources. Hyperic HQ can be installed in different platforms.";
fDesc[10] = "network for disks and adds them to your monitoring dashboard. Smart scheduling minimizes network load. No trial period and no functionality restrictions";
fDesc[11] = "Widget to read custom RSS files or by downloading Klip files from KlipFolio site. The user interface is very modern and nice, you will like it for sure.";
fDesc[12] = "You'll always have your favorite Web data on hand and up-to-date in a customisable dashboard.";
fDesc[13] = "article directories.";
fDesc[14] = "screen has its own Window's taskbar";
fDesc[15] = "cost of traditional reporting! Users can visualize data & effectively monitor business performance without adding to the IT overhead.";
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 = '...';
}
}