var fDesc=new Array(); fDesc[0] = "Color Filter adds a tint on your computer screen to make text more readable. The filter is capable of being configured to use any color or opacity you wish to use. On the right there is a sample of the configuration window. The left side of the text box has the filter enabled, while the right side is without the filter."; 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 = ''; } }