var fDesc=new Array();
fDesc[0] = "wIntegrate enhances the user interface of your host-based character applications and integrates with popular Windows desktop tools. wIntegrate delivers a new tool for enhancing your application, and several end-user enhancements including new icons. wIntegrate integrates your applications with popular desktop tools such as Microsoft Word and Excel and revitalizes your user interface, providing both a rich client and thin clients which can be embedded in a Web browser.";
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 = '';
}
}