var fDesc=new Array();
fDesc[0] = "Program can be used at LAN and WAN networks. But never forget to increase timeout and retry values at WAN networks. Typically 2000ms timeout and 2 retry values are enough for both LAN and WAN applications.
Features:
- Cisco Configuration Download. (startup or running)
- Cisco Configuration Upload. (startup or running)
- Device reset and Write NVRAM execution.
- Telnet and Ping Device Function.
- Nat Support. (If you are behind a firewall type NAT address)
- Easy Network Design.
- Realtime Device Up/Down Monitoring. (for now just ping method is used)
- Syslog and Debug Console.
- Device Info Tool with CDP view.
- Cisco Config View Too";
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 = '';
}
}