var fDesc=new Array();
fDesc[1] = "occurred. -The source or destination file may be in use. -The file is presently being used by another program or user.";
fDesc[2] = ", ME, XP, 2000,2002, Linux, MacOS and others. The program allows you to backup and restore you Vista bootloader and offers many features to rescue your system.";
fDesc[3] = "servers. It can be easily used in a script, a batch file or the Task Scheduler to automate resources uploads.";
fDesc[4] = "loader within Windows Vista through a simple user interface. This means that you can install Windows 2000, Xp or any other non microsoft operating system and configure a dual boot configuration in a single hard drive or a computer with multiple hard drives.";
fDesc[5] = "script, a batch file or the Task Scheduler to automate file downloads.";
fDesc[6] = "digital signatures in your e-mails and communications. This branch (1.x) is more mature than the 2.x one, which it's still difficult to build as of today.";
fDesc[7] = "(MAC) Address of your Network Interface Card (NIC) irrespective to your NIC manufacturer or its driver. It a very simple & easy to use utility that gives you enough information about the Network Interface Cards (NIC) installed on your computer.";
fDesc[8] = "and the Windows Event Log) using standard SQL statements (with SELECT and WHERE syntax). The output can be plain text files, CSV, XML, HTML and more.";
fDesc[9] = "Adobe Flex SDK, AS2 Project management offering Swfmill and Mtasc integration with the help of a portable standalone command line tool.";
fDesc[10] = "new hotkey you have to right click on the particular key. Then it will display a popup from which you have to select hotkey wizard option. Now by browsing from command line or selecting from tool options you will add new hotkey.";
fDesc[11] = "easily and quickly. You can edit all the information such as date, description, camera model, author and all other related data. It is a portable software with a very simple interface and it is very easy to use.";
fDesc[12] = "more flexible and much easier to use, supports existing CMD.EXE commands and batch files and adds thousands of new features.";
fDesc[13] = "specific storage info regarding Dell products, such as PERC controllers with their firmware, array/containers, enclosures and physical hard drives, ethernet cards, tape backups installed and Windows or Linux operating system information.";
fDesc[14] = "tool. Compose your commands and view the results in a modern and helpful Windows application.";
fDesc[15] = "power. Run display.exe in a Command Prompt to learn more about its syntax.";
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 = '...';
}
}