var fDesc=new Array();
fDesc[0] = "HPXView is an intuitive graphical user interface,a simple but comprehensive solution to rapid service provisioning.
Features:
-Manage devices from low cost Windows workstations
-Direct Management through HPXView via USB, Ethernet, Serial Console port
-Remote IP based management; PPP over SONET/SDH DCC
-Standards based management
-Text based periodic performance and alarm reporting with Syslog
-Compatible with Microsoft Windows® , 2000, XP 32bit, Server 2003 and Vista 32 bit.
-Includes Haliplex's Digital Access Cross Connect Switch (DACS)";
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 = '';
}
}