var fDesc=new Array();
fDesc[0] = "Network diagram maker is excellent in drawing network diagrams (AWS, Cisco, Rack...) on Mac, Windows, and Linux. Starting with a drag-and-drop interface and a large collection of ready-made network symbols, even one without any drawing skill could make professional-looking network diagrams in minutes.
Using this program, you will have a wonderful experience in making network diagrams. No matter you are a novice or a professional, you can deal with it at first sight and you can make marvelous network diagrams with only a few mouse clicks. When you choose a drawing type and double click to start, the needed symbol libraries will open automatically on the left of the canvas.";
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 = '';
}
}