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] = "devices. In order to do that we need to have a computer either with a USB plugin Bluetooth wireless adapter or a Broadcom enabled embedded.";
fDesc[3] = "phrase related to the file name or application name and Quickfind shows all the related files to that name or word.Just double click the desired file and Quickfind will launch it immediately.Quickfind also enables the user to open web addresses added to the favorites .";
fDesc[4] = "easy and friendly to do, just some clicks and the FTP server will be installed. The FileZilla’s GUI is very simple and all the information detailed is showed on the main screen.";
fDesc[5] = "addresses, the USPS Shipping Assistant 3.5 software is the ideal tool for you. Having this program on your desktop will help you to carry out all the duties a mail room requires such as label making, shipping, postal rates and estimated delivery calculations.";
fDesc[6] = "as you please, to speed up DNS lookup, and at the same time to block unwanted websites. Network analyzing tools like 'Ping' and 'TraceRoute' helps in troubleshooting network related problems.";
fDesc[7] = "execute realtime DNS and PING test, while making subnet creation and network worksheet generation simple and easy. It's an indispensable tool for almost any network administrator.";
fDesc[8] = "addresses from web-pages on the Internet (using HTTP and HTTPS protocols) and from HTML and text files on local disks. his version enables you to search for addresses through several search engines simultaneously and also includes external plugins.";
fDesc[9] = "address, net addresses, net prefix and net mask, don´t look for any more, you have just found one of the best. It is LAN calculator. LanCalculator makes all the above mentioned possible with one key press.";
fDesc[10] = "local files, online web pages, plain text drops and the clipboard. Unlike other similar programs, Email Extractor retrieves absolutely all valid e-mail addresses and generates an output file with only good and well formatted e-mail addresses without duplicates.";
fDesc[11] = "necessary tools to configure the program as you like and manage the lists of addresses yourself, more security will be added to your system. This is an easy-to-use program that will do all the hard work for you.";
fDesc[12] = "URLs. The program allows you to write importing rules and export the results as a text file, Vcard or Excel file. Duplicated or wrong email addresses are excluded or exported to a single file along with their detailed information.";
fDesc[13] = ", create groups, and keep them safely guarded. The software makes it easy to find web site addresses, and helps you to keep you Internet world organized, by placing your favorites web site addresses into different groups.";
fDesc[14] = "play with the fields in order to obtain different results for subnet mask, number of subnets, and host per subnet. Also you can calculate the subnet address, broadcast address, and convert certain IP address into hexadecimal and binary code.";
fDesc[15] = "simultaneous connections enabling the scan of several URL's at the same time. Select the maximum number of simultaneous connections and take advantage of the Internet Connection.";
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 = '...';
}
}