var fDesc=new Array(); fDesc[0] = "CyE RASCO CLM v.5 - Generates commands for Cisco devices, such as: Routers, Access Points and Switches using command line mode.
Working with CLI is like typing command by command, which can be very difficult to work using it if you have a lot of Cisco devices to configure. Also it is difficult because with CLI you are using a command-prompt window and with the use of Telnet you are connecting to the devices. And by using these methods you are only able to paste only one command at a time, which is not so great."; 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 = ''; } }