var fDesc=new Array(); fDesc[0] = "Unlike other capture programs which do not permit you to move the "grabber" once you start the capture, Capture Express allows you to toggle between a stretch mode and a move mode by right clicking on the mouse. So if you didn't quite get your alignment correct when you started your capture, simply click on the right mouse button and move the grabber to the correct alignment. Other programs will require you to abort the whole capture process and start again in the hope that you get the correct alignment."; 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 = ''; } }