var fDesc=new Array();
fDesc[0] = "MacroWorks translates commands from X-keys USB devices into actions on a Windows system. We also offer other applications for working with the X-keys as well as a full software development kit (SDK) which gives the developer direct access to input and output with all of our products.
Main Features:
- Send keystrokes and macros to any application
- Insert Unicode
- Launch programs
- Open directories, folders, or files
- Use the same key to send different commands depending upon the application
- Combine multiple mouse, keyboard, and special functions on the same key
- Program Hardware Mode keyboard and mouse commands
- Create and print paper key legends";
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 = '';
}
}