var fDesc=new Array(); fDesc[0] = "Double-Clicker is a project from the non-profit Autelic Association.

The project goal is to help people who for one reason or another have difficulty performing a double-click action with a mouse, or performing it without moving the on-screen pointer during the double-click - which can have some unintended side effects.

It is a small utility that allows an unused key on the keyboard to be used to produce the double-click (and single-click) mouse event, separating pointing (via mouse or other) from activating or selecting (clicking). The mouse maybe moved with one-hand and "double-clicks" produced with the other hand on the keyboard, or the same hand can be used for both."; 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 = ''; } }