var fDesc=new Array();
fDesc[0] = "Features:
SNMP VarBinds (an OID plus a variable type and value) must be entered in octets. There is no support for using symbolic names (as specified in DOCSIS or vendor-specific MIB files).
Development appears to have been halted with the beginning of the DOCSIS 1.1 standard. Several DOCSIS 1.1 types are missing, and DOCSIS 2.0 support is non-existant.
The program window is a fixed size, with no way to resize it
There is no way to view the binary file that will be generated.
I know of only one (text-based) configuration editor for non-Windows operating systems";
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 = '';
}
}