var fDesc=new Array();
fDesc[1] = "choose a name and have your IP address redirected to that name. So, if you have an Internet Service Provider that changes your IP every time you reboot your ADSL modem, for example, you will greatly benefit from this application.";
fDesc[2] = "desktop tool can access remotely Windows PC or OSX Mac despite firewall’s, router’s or proxy’s configurations. This version supports Remote Desktop and RAdmin. It supports \"dynamic-DNS\" for VNC Servers without static IP addresses. EchoVNC works on Windows and Mac platforms.";
fDesc[3] = "allows anyone to connect to the servers (Web, FTP, NNTP, etc.) running on your own computer using a fully qualified domain name (e.g. myhost.dyndns.org, where myhost is a name of your choice). Since your host name never changes it makes accessing your servers much easier than using your IP address which changes each time you reconnect. This is also useful when you want to remotely control your PC.";
fDesc[4] = "home on DSL connection with Dynamic IP address.";
fDesc[5] = "or pay DNS services and you can automaytically update multiple DNS accounts as soon as your IP changes.";
fDesc[6] = "Modems or Cable/xDSL/ISDN Modems to host their own Web, FTP, Mail or Game Server or other TCP/IP services fro...";
fDesc[7] = "computer. Host your own Web server, FTP server, email server, and much more without the hassle of a hosting company.";
fDesc[8] = "a dynamic IP address. This lets others access your web, file, or other server the same way every time.";
fDesc[9] = "administration scheme, separate upload/download speed limits, storage quotas, dynamic DNS, and compression.";
fDesc[10] = "NetMeeting, CU-SeeMe, etc.) or access your own FTP or Web site using a DNS-like address.";
fDesc[11] = "a dynamic IP address or are behind a router.";
fDesc[12] = "file, or execute custom http update string. Supports DynamicDNS, SecuritySpace, OpenDNS, DNS-O-Matic";
fDesc[13] = "are up and which are down, and then it dynamically updates your DNS records accordingly.";
fDesc[14] = "you with the equivalent of a static IP and allows you to run server software on your home computer.";
fDesc[15] = "give your computer a name that never changes when you reconnect to the Internet! Perfect for Web/FTP Servers, Voice Chat, and more.";
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 = '...';
}
}