var fDesc=new Array(); fDesc[0] = "Mouse Shaker is an application which recognizes mouse symbols, if a user moves his mouse in a certain way which creates a symbol Mouse Shaker will respond to that symbol and perform a task the user had for that symbol.

Mouse Shaker allows the use to drag a window and move his mouse up and down continuously, making the window transparent which can be useful for comparing windows without the need of switching between them! There are many more options for the user to experience."; 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 = ''; } }