var fDesc=new Array();
fDesc[0] = "WinTopo is a high quality software application for converting TIF, JPG, PNG, GIF, BMP files and scanned images into useful vector files suitable for CAD, GIS and CNC applications.
Features:
-Advanced vector extraction intelligence.
-Acquire image direct from a scanner.
-Many raster enhancement options: despeckle, fill holes, negative...
-Advanced raster thinning methods.
-Custom thinning options.
-Additional Edge Detection options.
-Georeferencing.
-Digitising and Vector Editing.
-Level/height assignment to vectors, 3D output.
-Priority Support.";
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 = '';
}
}