var fDesc=new Array();
fDesc[0] = "Screen OCR is a program that converts anything you can read on the computer screen into editable text. This program can be used by journalists, bloggers, web designers, analysts, interpreters - anyone involved in text processing. You can choose the appropriate selection mode, select a text region on the screen, wait while Screen OCR recognizes it, and then just copy 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 = '';
}
}