var fDesc=new Array();
fDesc[0] = "Keyboard Tweaker is a Hotkeys manager. It transform a normal keyboard with 101/102 keys into a multimedia keyboard using the hotkeys. The program sets some combinations to the keyboard keys for a function.
More Features:
- icon attachment for every keys combination
- lovely graphic interface
- graphic detail configuration
- skinable interface
- easy configuration
- support for Windows 2k/XP opacity (alpha blend)
- registry configuration
- minimize to System tray
- master speaker volume adjustment
- volume step configuration";
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 = '';
}
}