var fDesc=new Array();
fDesc[1] = "your Nokia Phone to interact with your PC, opening the Internet world at your hands, so you could manage the games, the music, the ringtones and photos.";
fDesc[2] = "means. This software will organize all the pictures on the computer and mobile phone (cellular) for viewing, editing, sharing and search purposes. You can move pictures from and to PC and mobile phone (both ways) and make changes to the images that will be kept in a safe place.";
fDesc[3] = "Windows-98 System files. This utility can be used on Windows2k and XP. Use System files to create boot-drive from the internal system or alternate locations.";
fDesc[4] = "reads the 9 or 8 bits input raw image data (RGB Bayer pattern) from an image device and outputs through a USB port into the PC. This chip includes three individual digital color gains setting (named R, G, B gains), image compression engine, offset compensation, hardware windowing with random image size selection, panning and scaling functions and audio input interface.";
fDesc[5] = "technology. * 2000dpi Laser Sensor * 32KB Onboard Memory * 1000Hz Ultrapolling™ Add 32KB of onboard memory, this intelligent mouse is a genre-defining weapon that makes for penetrating, explosive gameplay.";
fDesc[6] = ", can play on virtual instruments and percussion sets, records her/his own voice, combines the different parts as blocks to be aligned and applies multiple effects to the timeline.";
fDesc[7] = "sophisticated viewing and searching to accurately and efficiently debug and test USB devices.";
fDesc[8] = "unauthorized access to USB devices and prevent sensitive data from leaking out and secure your files. Syslog entries for copied files/folders.";
fDesc[9] = "hardware controller, while user can control the PTZ camera through computer 232/485/USB port.";
fDesc[10] = "located on a remote PC over a LAN/WAN/VLAN/VPN or Internet and use it as if it was plugged into your own PC.";
fDesc[11] = "clicks must be done to prevent writing to USB Keys, USB card readers or Memory Sticks. The main issue discovered: the program is not able to prevent writing to a Sata Hard disk connected to a USB port.";
fDesc[12] = "copying of your confidential data on USB devices. It is also Energy Conservation aware with the SAVE Enerygy alert.";
fDesc[13] = "including USB Printers, Network Printers, Print-Servers, as well as PDF-printers too!.";
fDesc[14] = "media that connects to computer USB ports, for example, memory sticks, removable hard disks, iPods, and more. Works without agents!";
fDesc[15] = "Bus monitoring utility can spy, capture, view, log, analyze, test usb device activity performing connection traffic analysis with data acquisition";
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 = '...';
}
}