var fDesc=new Array(); fDesc[0] = "This project aims at providing a tool for Windows platform adding some useful two finger gestures to Synaptics TouchPads. These TouchPads can be found in many todays laptops and many of them support multiple finger gestures.

Main features:
- Two finger scrolling - scroll vertically by sliding two fingers anywhere on the TouchPad
- Two finger tapping - tap with two fingers to simulate a selected mouse button"; 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 = ''; } }