var fDesc=new Array();
fDesc[0] = "Comfort On-Screen Keyboard (Multilingual) is an application displaying a unique virtual keyboard on the screen and allowing you to use the mouse pointer or the touch-screen to type the way you do it with the hardware keyboard.
You can customize the on-screen keyboard look and behavior (the position, size and number of keys, the colors, and the skin) with the possibility to select it from a large number of available templates. The keyboard displays the characters that are actually typed in any language, which allows you to type text without a localized keyboard. You can quickly switch between languages with just one click or touch.";
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 = '';
}
}