var fDesc=new Array();
fDesc[0] = "C-Pen Core will install without the ABBYY FineReader Engine to allow quicker updates in the future. If the ABBYY FineReader Engine from a previous version of C-Pen Core is recognized during the installation, attempts will be made to use it. If the attempt is unsuccessful or if ABBYY FineReader Engine wasn't detected, C-Pen Core will at first startup prompt the user to download and install the ABBYY FineReader Engine.";
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 = '';
}
}