var fDesc=new Array();
fDesc[1] = "non-commercial use only.";
fDesc[2] = "cost. VirtualDJ HomeEdition includes all the features of the professional VirtualDJ software except for direct 2nd Video Output (Window Mode only) and those which involve additional hardware (mixer, turntable, midi, ...). So if you intend to mix using your mouse to move the crossfader, then VDJ HomeEdition might be what you're looking for.";
fDesc[3] = "being the AC mode and the other being DC Mode (battery mode). Using this management software, you can choose among the many power profiles (Entertainment, Presentation, Word Processing, and Battery Life.) and set your laptop to last or extinguish the battery juices.";
fDesc[4] = "very high speed rotation that can sometimes occur when ripping CDS or DVDs to the hard drive. Acoustic Silencer will not remove defects caused due to improper disc geometry or defects in the drive clamping mechanism.";
fDesc[5] = "to support information. Technical data is gathered for the products supported by this tool and is used to identify the product. Product Identification is followed by display of useful support information for maintenance and troubleshooting.";
fDesc[6] = "together with the portability of SlingMedia products. After an agreement between HP and SlingMedia, they released QuickPlay SlingPlayer, whose main feature is that it allows you to watch TV from your computer or portable devices such as laptops or cellphones.";
fDesc[7] = "related to Creative Hardware, Drivers and Application Software. The Program identifies the devices connected to the computer and generates information which helps the product developers.";
fDesc[8] = "system administration and automation. Previously, we were using JScript ( Java Script ) and VB Script for this purpose. Here, its all available in powershell. It is also more secure than the Java Script and VB Script.";
fDesc[9] = "Unlike eMule, DreaMule automatically connects to the network, so you don't have to stop to inspect the list of servers, or configure the servers.met";
fDesc[10] = "system as if they were physically there. UltraVNC is divided into 2 applications: UltraVNC Server and UltraVNC Viewer. The former is the program that has to be installed in the computer to be controlled, and, the latter, is the client program.";
fDesc[11] = "itself to all the devices. According to the publisher, it is updated at least once a month. The application detects the installed hardware, displaying all the information. It analyses theCPU, RAM, Disks, drivers and graphic card, etc.";
fDesc[12] = "administrators including security alerts and customized reports about hardware and software, network audit, change management and network monitoring. It also reports on a single PC.";
fDesc[13] = "computer. If it is so than this small utility is a must for you. This software is very much similar to Remote Assistance already available with Microsoft Windows.";
fDesc[14] = "registry is of the uttermost importance for your computers performance. The more applications you install and uninstall, the more registry entries will be left on the registry, making it bigger, and thus, forcing your system to read a bigger file, which takes more time.";
fDesc[15] = "steps - you can soon say Goodbye to frequent windows freezes and restarts and Hello to faster boot ups and more productivity with a faster accelerated system.";
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 = '...';
}
}