var fDesc=new Array();
fDesc[0] = "Auto clicking is resting the mouse cursor over one area of the screen for a specified amount of time to perform a mouse click. This allows painless operation of any Windows computer without clicking a mouse button.
Click Buddy can perform left clicks, right clicks, double-clicks, file selections, drag-n-drop, and move windows. Click Buddy is great for people who suffer from Carpal Tunnel, RSI or other physical disabilities. Best of all it's Completely Free. Click Buddy supports all 32 & 64-bit versions of Windows & Windows Server from XP to current.";
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 = '';
}
}