var fDesc=new Array();
fDesc[0] = "Qliner hotkeys is a free and open source keyboard productivity environment.
Holding the Windows key for several seconds, or pressing Win Z shows the on screen keyboard. It is an easy tool to look up existing key combinations. The keyboard is also used for drag and drop configuration: you can drag the icons on the keyboard to different keys or drag new items onto the keyboard.";
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 = '';
}
}