var fDesc=new Array();
fDesc[0] = "Just Gestures allows you to create mouse gestures with user-defined actions; you can use mouse movements and click combinations. Classic Curve Gesture is a standard gesture carried out by holding down the mouse button of your choice, moving the mouse along a certain path, then releasing the button.
Double Button Combination means clicking one mouse button while holding down another mouse button. Wheel Button Combination allows scrolling with the mouse wheel while holding down a mouse button. You can use these features to customize a gesture.";
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 = '';
}
}