var fDesc=new Array();
fDesc[0] = "CurveUnscan makes easier, faster and more accurate the reverse engineering of graphs into data.
Extracting data from graphs is necessary for :
- Comparing data presented on graphs in the litterature / internet with your own data
- Comparing different authors who present their results in graphs.
- Refactoring documentation containing graphics
- And so much more !";
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 = '';
}
}