var fDesc=new Array();
fDesc[0] = "Dragger32 features :
- AutoClick™ performs mouse button clicks using dwell
- Manual clicks and dwell clicks can be transformed into double-clicks, right clicks, or drag operations
- Dwell click time is configurable
- Jitter Box features compensates for user instability
- Dragger for Kids! is a simplified toolbar with left click and drag
- HotZones provides Dragger acces in full-screen games
- Dragger toolbar and buttons are resizable";
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 = '';
}
}