var fDesc=new Array();
fDesc[0] = "Easy Trace Pro is developed for quick and high-grade digitizing of diverse cartographic materials. It is armed with a whole arsenal of utilities and tools for both data extraction from images and vector data correction.
The software successfully processes real materials – xerocopies, faded and worn color maps, etc. On the other hand, it is not less effective at space imagery interpretation.";
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 = '';
}
}