var fDesc=new Array();
fDesc[0] = "PF Macro Recorder lets you record the actions you do on your computer with your mouse and your keyboard and redo them later automatically.
Record everything you do with a high precision, from mouse movements to keyboard presses. Play recorded macros in real time or with a specific speed (up to 10 times faster or 100 times slower).
Many other playback options such as loop, resolution-relative, and shift the mouse cursor";
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 = '';
}
}