var fDesc=new Array();
fDesc[0] = "Easy-Mark Labeling Software is innovative software that simplifies label creation for customer applications such as Network, Panel Building, and Construction & Maintenance.
New market specific labeling application tools assist in creating optimum identifiers and labels for many common labeling applications. Easy-Mark™ saves time and money in creating labels for wire/cable, network components and safety identification. Features such as WYSIWYG user interface, data import, symbol import and pre-loaded label formats make label creation easy and flexible.";
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 = '';
}
}