var fDesc=new Array();
fDesc[0] = "An on-screen Keyboard is an utility that displays a virtual keyboard on the computer screen.
Touch-It Virtual Keyboard is a powerful set of tools to build and use on screen keyboards. You can type right away using the preset templates or create your own from scratch using the Designer.
Touch-It Virtual Keyboard is designed to fully mimic a physical keyboard. Features like keyboard on log-on screen, Ctrl Alt Del, task switching are supported.";
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 = '';
}
}