var fDesc=new Array();
fDesc[0] = "DynDNS® Updater updates your DynDNS hostnames to resolve to your remote IP address
Features
* Full-featured, easy to use interface
* Windows Service integration
* Works on Windows XP, Windows Vista, Windows Server and Windows 7
* Dyn Internet Guide setup assistance. Provides an option for configuring Dyn Internet Guide on your Windows computer during installation, enabling a better, faster, and safer Internet.
* Maintains communication with Dyn to prevent Dynamic DNS hosts from expiring due to inactivity
* Logs activity to file, displays visual indicators of the Updater status
* Automatically determines which network interface to use, automatically detects proxies
* IP detection in real time (directly connected) or every 10 minutes (behind a router/NAT)";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}