var fDesc=new Array();
fDesc[0] = "Plan-Um™ software ties together all the different cable criteria that are found in complex voice/
data/video installations and presents concise information in printed reports, while storing data for future use.
Main features:
- Create custom floor plans or import existing
AutoCAD/Visio files
- Show specific ports: network, telephone, cable
- Indicate cable runs
- Print or e-mail layout for approval
- Save layouts for future jobs";
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 = '';
}
}