var fDesc=new Array();
fDesc[1] = ", and system information in one intuitive, easy to use interface, or at least thats was Dell goal! Though it improve the benefit obtained by it predecessor DellSupport, it still need to improve some of it features.";
fDesc[2] = "away, as if you were sitting in front of it. You can hear alert sounds, use your files, print remotely, transfer and synchronize files, link local drives to connected PCs and more.";
fDesc[3] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
fDesc[4] = "information from WeatherBug weather stations, or as reported by NWS. It retrieves the current conditions, hourly forecast, daily forecast, severe weather alerts from NWS (only in the US), and weather maps for thousands of cities world-wide.";
fDesc[5] = "when your discs are about to fail. Although this is a great feature that all discs should have, the application only supports discs that are S.M.A.R.T capable.";
fDesc[6] = "able to keep your drivers up-to-date on all your Computers. Using PC Pitstop Driver Alert 1.0 you can scan your system, identify the drivers installed and obtain a report with the changes you need to perform to keep your system running al peak performance.";
fDesc[7] = "you are using a microphone or have a built-in microphone in your web cam. The trigger alerts can be customized, and you can configure the program to record audio and video when an alert is triggered.";
fDesc[8] = "functionality is very easy and has amazing features such as: You will never be worried anymore if the email you sent were received, because these email won’t be blocked like spam, you will have the opportunity to see an alert window when somebody opens your email message! Etc";
fDesc[9] = "situations, even disasters, for some populations and this has led to the development of life saving weather alert software like the WeatherBug Alert 1.3 program. This software is especially useful for you if you live in a weather zone in a US location";
fDesc[10] = "autosuggest hotkey. TinySpell is excellent for correcting those nasty spelling errors that are created when doing web based e-mail, site access forms, or any other text based applications where spelling errors could pop up.";
fDesc[11] = "Internet and see whether those respond or not. The application is based on the basic ping test that can be performed from the command prompt on any computer.";
fDesc[12] = "immediately when a new call arrives. Supports talking Caller ID, Call Block, and Windows XP style tooltips.";
fDesc[13] = "Productivity E-mail slowing you down? Try Mail Alert. Mail Alert was designed with your productivity in mind. That's why we've made it easier for you to simply get your work done without the hassle of switching to your e-mail client every time you receive new mail.";
fDesc[14] = "forecast services: The United States National Weather Service, Accuweather.com and The Weather Channel. When you first use the application, you have to choose among one of those services and then add a location. In Windows Vista, this simple task of adding a location seems rather complicated";
fDesc[15] = "Service, and alert you instantly when it receives a weather warning, right on your desktop. The program has a neat little interface, and when minimized, it sits quietly in your taskbar displaying the current temperature of a location of your choice.";
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 = '...';
}
}