var fDesc=new Array();
fDesc[0] = "Mouse Recorder is the best Mouse Record Tool. It can record all your mouse actions, and then repeat all the actions accurately. It is very powerful and easy-to-use.
Key features
Record all mouse actions and repeat accurately
Support setting repeat times and the delay between two repeating
Support setting repeat speed
Comes with a mouse click tool
Support all latest Windows OS - Windows 7/Vista/XP/2000/NT/Server 2000/2003/2008";
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 = '';
}
}