var fDesc=new Array();
fDesc[0] = "This tool is an invention of Kaputa , developed by Kaputa Team to enable Language aware Single or Multiline Textboxes.
The concept, method and techniques can be implemented in c, java,vb, or any other language as an individual application or embeded inside an application, web sites, kiosk etc. This implementation is uses JavaScript and HTML only.
With Kaputa Uniwriter we can solve Unicode input issues simplifying use of Unicode by layman. Kaputa Uniwriter can be used any Indic, Chinese, other or roman language single page or web application.
Since it is designed to run on a JavaScript enabled web browser, will be run on Windows, Linux, Mac and other O/Ss supporting Java Script.";
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 = '';
}
}