var fDesc=new Array();
fDesc[0] = "Active Keyboard is a HotKey Manager tool that helps you get fast access to your preferred files, macros, url's and programs, such as Winamp or common Windows functions instantly by pressing a key combination of your choice.
Create shortcut keys supporting both mouse and keyboard macros.
Drag files, folders, and shortcuts to the Active Keyboard window to easily assign a hotkey.
Launch applications, documents, and URLs, and perform other actions using keyboard shortcuts.";
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 = '';
}
}