var fDesc=new Array();
fDesc[0] = "SV8100 PC Pro is a Microsoft Windows based application. It allows the technician/system administrator to download a database from the system, make changes, and then
upload.
This program is a user-friendly Windows® application that allows the user to program and configure features
of the UNIVERGE SV8100 system from the PC environment.";
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 = '';
}
}