var fDesc=new Array(); fDesc[0] = "Using this program, the user can directly take pictures and record video on the computer. The application automatically detects the webcam and gives the power to start recording straight from the main window. The user can choose between two image modes, horizontal or vertical mirrors, and two different color modes, black and white and sepia."; 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 = ''; } }