var fDesc=new Array();
fDesc[0] = "Network Notepad Professional creates your diagrams in a professional way.
Network Notepad Professional Edition New Features:
-Compatibility - It's a major rewrite using Microsoft .NET, so it offers better compatibility and stability with the latest Windows operating systems compared to the freeware edition.
-Zoom - Work with and edit diagrams at any zoom level.
-Resolution - Draft, Fine and Superfine modes for improved graphics and printing.
-Rotate - Rotate text and rotate objects to any angle. Drag-and-Rotate.
-Workspace - Supports larger workspace bitmap / larger diagrams.
-Multi-page diagrams - Add as many pages to a diagram/ document as you wish and access the pages instantly using the onscreen page tabs.
-Custom shapes - Create your own customizable shapes inside of Network Notepad Professional Edition.
-Grouping and Locking - Combine two or more objects to make composite objects.";
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 = '';
}
}