var fDesc=new Array();
fDesc[0] = "Digitize-Pro is the best tool to digitize a plot or graph back to X,Y data (ungraphing). Digitize-Pro can import graphics from a scanner or a graphic file and automatically convert it to X,Y data.
Main features:
- Several smart Auto-Trace algorithms to handle any type of graph.
- Support for TWAIN compatible scanners.
- Several graphics import/Export formats (BMP,PCX,TIF,GIF,TGA,JPEG).
- Image processing capabilities: blur, edge-detection, soften, sharpen, rotation, resize, stretch.
- Cursor position zoom lets you see every pixel.";
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 = '';
}
}