var fDesc=new Array();
fDesc[0] = "Pulover’s Macro Creator is an open source automation tool and script generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder.
Main features:
- Mouse & keyboard.
- Control commands.
- Window commands.
- Image & pixel search.
- Loops.";
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 = '';
}
}