var fDesc=new Array();
fDesc[0] = "The My-T-Soft Family of On screen Keyboard and Touch screen software user interface utilities completes the evolution of the user-interface.
My-T-Soft provides the user with a 'heads up display' interface (found in fighter planes, helicopters, tanks, and futuristic automobiltes). Its principal objective is to keep the users focus and concentration centered in one place. My-T-Soft uses that concept to reduce the visual re-focusing and re-positioning, caused by the heads up and down motion of going from screen to keyboard to screen, for easier user interaction.";
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 = '';
}
}