var fDesc=new Array(); fDesc[0] = "Gamma Control is an easy-to-use program designed to let you adjust the gamma on your computer, by just pressing a combination of keys on your keyboard. Or you can adjust the gamma levels by using a trackbar. It also allows you to put your monitor to sleep, by pressing key combinations, which especially proves useful if you have more than one monitor."; 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 = ''; } }