var fDesc=new Array();
fDesc[0] = "Auto-Keyboard is a software that imitate keyboard keystroke and mouse action. You may enter a group of keystrokes or mouse actions then it will automatically and repeatedly generate the group of keystrokes or mouse actions. Auto-Keyboard can economize a lot of times for you if you have a lot of and repeated keyboard or mouse working.
Key Features:
1. Automatically and repeatedly type.
2. Automatically and repeatedly click mouse.
3. Automatically and repeatedly fill form.
4. Automatically play some games.";
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 = '';
}
}