var fDesc=new Array();
fDesc[1] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[2] = "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[3] = "incredible application uses multi-threading, so on fast computers you can scan more than 1000 port per second, making this tasks really fast. What is more, it contains descriptions for common ports, and can perform scans on predefined port ranges.";
fDesc[4] = "your router in a few steps. This application allows you to add new port configurations manually (in the case you are an advanced user) or simply select from a great variety of pre-configured ports for many popular applications.";
fDesc[5] = ", FLASH and PIC's using user friendly tools and multiple programmer types. Ponyprog supports AVR, SPI eeprom, AVR micro, 12C bus 8bit eeprom, PIC 16 micro, PIC 12 micro, AT89S micro and SDE2506 eeprom family chips.";
fDesc[6] = "multithreaded, so on fast machines you can scan many computers at once.";
fDesc[7] = "perform scan on predefined port ranges.The tool is designed with a user-friendly interface and is easy to use.";
fDesc[8] = "port, because the program maps ports to its owning application. Active Ports 1.4 also displays a local and remote IP address for each connection and allows you to terminate the owning process.";
fDesc[9] = "going to travel to the Caribbean in 17 th century. You can choose between English, French, Spanish and Dutch Caribbean colonies, with eight different scenarios.";
fDesc[10] = "functionality for your code. This incredible program allows you to enumerate all installed serial devices, including, but not limited to serial ports and modems.";
fDesc[11] = "and user needs more communication serial ports. The application creates virtual serial RS232 ports with exactly the same as real serial ports. Applications that work with real serial ports will never feel any difference when using these virtual ports.";
fDesc[12] = "Virtual Serial Port Driver is installed, for applications involving GPRS devices, user PC can be set to operate in TCP Server mode, initializing the connection when sending RS232 data to the remote port, the converter sets the serial connection.";
fDesc[13] = "emulation. Created virtual serial port looks like real serial port for other Windows applications. Compatible with VB, VC++, C++ Builder and Delphi.";
fDesc[14] = "processes' details of your active connections. The program can view and dump data packets and even work as a packet sniffer for any IP.";
fDesc[15] = "includes a couple of launchers so you can find and add the data you need for the IWADs. There is also a nice control panel in-game. It doesn't offer anything more than Doomsday in terms of performance, but is still a good port to try.";
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 = '...';
}
}