var fDesc=new Array();
fDesc[5] = "Sony VAIO VGN-CR260A notebook model. In case we need to reinstall the program again or want to upgrade to Microsoft Windows Vista Home Premium, we can download the original drivers for free from the official Sony website.";
fDesc[9] = "collect bandwidth usage data and measure the speed of your Internet or any other network connection. NetWorx can help you identify possible sources of network problems, ensure that you don't exceed the bandwidth limits specified by your ISP, or track down suspicious network activity characteristic of Trojan horses and hacker attacks. The program allows you to monitor all your network connections or a specific network connection (such as Ethernet or PPP) only. The software also features a system of highly customizable visual and sound alerts. You can set it up to alert you when the network connection is down or when some suspicious activity, such as unusually heavy data flow, occurs. It can also automatically disconnect all dialup connections and shut down the system. The incoming and outgoing traffic is represented on a line chart and logged to a file, so that you can always view...";
fDesc[10] = "in order to analyze network problems, detect intrusion attempts, Monitor usage, collect statistics, filter content from network traffic, debug communications. Ethereal changed it's name to Wireshark.";
fDesc[12] = "turning your computer into low-cost terminal server. So, any serial port device connected to COM port could be accessed from anywhere in the world.";
fDesc[13] = "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[14] = "the following driver models:Intel(R) PRO/100B PCI Adapter (TX) Intel(R) PRO/100B PCI Adapter (T4) Intel(R) PRO/10+ PCI Adapter Intel(R) PRO/100 WfM PCI Adapter Intel 82557-based Integrated Ethernet PCI (10/100) 82557-based Integrated Ethernet with Wake on LAN Intel 82558-based Integrated Ethernet Intel 82558-based Integrated Ethernet with Wake on LAN Intel(R) PRO/100+ PCI Adapter Intel(R) PRO/100+ Management Adapter Intel(R) PRO/100+ Alert On LAN 2* Adapter Intel(R) PRO/100+ Management Adapter with Alert On LAN* Intel(R) PRO/100 S Management Adapter Intel(R) PRO/100 S Advanced Management Adapter Intel(R) PRO/100+ Server Adapter Intel(R) PRO/100+ Dual Port Adapter Intel(R) PRO/100 S Server Adapter Intel(R) PRO/100+ MiniPCI Intel(R) 82559 Fast Ethernet LAN on Motherboard Intel(R) 82559 Fast Ethernet LOM with Basic Alert on LAN* Intel(R) 82559 Fast Ethernet LOM with Alert on LAN* Intel(R)...";
fDesc[15] = "your USB devices and access remote devices without leaving your place!";
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 = '...';
}
}