var fDesc=new Array();
fDesc[0] = "WordCaptureX has been designed to address the needs of linguistic tools.
These tools often integrate with other application to provide definition, translation, and spell-check of the word or sentence pointed by the mouse cursor.
Customers proved the library can be used for many other scenarios like clicking on a phone number to call, validating a person's address and generally speaking the integration of two systems when the workflow required that one system is feed with the text from the other.";
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 = '';
}
}