var fDesc=new Array();
fDesc[0] = "Audiomatic is a tool used to make system-wide macros and then launch those macros with a voice command or keyboard shortcut at any time... from any Windows application or game. Forget typing repetitive tasks or clicking through cumbersome menus. Audiomatic makes it easy as speaking a word! Macros are so simple to make, you will be an expert in minutes. Audiomatic enables you to launch programs, files, or websites; simulate keystrokes; play sounds; speak text; or even run scripts. You can do it all with a voice command or keyboard shortcut!
Audiomatic will revolutionize the way you use your computer!";
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 = '';
}
}