var fDesc=new Array();
fDesc[0] = "SMS Visio Utils add-in is aimed at making data center and infrastructure documentation management a little bit easier.
Main Features:
- Automatic re-sizing of cabinet shapes on accurate scale drawings of floor plans using width/depth attributes (shape data).
- Create grids of shapes (e.g. floor tiles) quickly and easily.
- Easily creating “drill down” diagrams linking shapes on a master diagram to diagrams holding details.
- This is an intelligent Visio master shape (stencil) for use in network diagrams, and shows port labels on connections.";
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 = '';
}
}