var fDesc=new Array();
fDesc[0] = "Imagine, you see a large amount of text on your desktop, but there's no way you can copy it to the clipboard and subsequently deal with it: a messagebox, a flash animation, a program menu or help text, a graphic picture, a listing of Windows Explorer folders, or some words or figures protected by a "script", for some reason it just cannot be copied to the clipboard.
With Screen Capture Text, you won't have to re-type anything.
You can select text with the regular (rectangular) selection tool and let the character recognition solution do the rest!
In less than a second Capture Text (character recognizer) automatically scans the selected area, recognizes the text and saves it to the clipboard.";
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 = '';
}
}