var fDesc=new Array();
fDesc[0] = "Panopticum Vectorizer is a new handy tool for vectorizing color raster images. It was designed as a plug-in for Adobe Illustrator, thus user can use it in the medium of the mentioned editor.
Panopticum Vectorizer will help user convert a raster image into vector image with defined contour precision in a blink. The color settings allow the number of colors vary from 2 to 256. The automatic preview window will give user opportunity to visualise vectorizing settings changes.";
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 = '';
}
}