var fDesc=new Array();
fDesc[1] = "drives, card readers and other gadgets that you connect to your PC through the USB ports. USB Safely Remove is intended to allow the users to remove USB drives safely.";
fDesc[3] = "programming interfaces (APIs), support and test tools, and documentation. The BTW is designed to operate on any personal computer and has been optimized to support Broadcom's Blutonium chipsets. The BTW provides simple integration, powerful diagnostics and the shortest possible time to market, exactly what you'd expect from the experts at developing Bluetooth HCI-compliant wireless technology solutions.";
fDesc[5] = "for later offline browsing or editing. With this program you will be able to download a great number of Web and FTP sites simultaneously that you can later view inside the program or outside with your favorite browser.";
fDesc[7] = "used.";
fDesc[8] = "the formatted hard disk, crashed hard disk or memory card, USB device, Zip device, Tape device, floppy disk, CD, DVD or any other media. And File Rescue Professional is very suitable to perform all these tasks.";
fDesc[9] = "your USB device over the Local network or the Internet. ou will be instantly connected to any USB drive configured on your Local network or the Internet as if it is plugged to your system.";
fDesc[10] = "sophisticated viewing and searching to accurately and efficiently debug and test USB devices.";
fDesc[11] = "USB transactions happening at USB host controllers, hubs and devices. USBTrace is a 100% software product.";
fDesc[12] = "if it is full of files and you don’t want to search for the one you want. Or if you are in a hurry to get your document printed from a remote computer and you just want it to pop up immediately. Is it possible?";
fDesc[14] = "outgoing data of a USB device plugged into the computer.";
fDesc[15] = "coding, optimization and foolproof testing. This application allows the user to capture, analyze and display all the data that is transferred between a USB device connected to the computer and the concerned application.";
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 = '...';
}
}