var fDesc=new Array(); fDesc[0] = "Screen Tinter is a free utility which allows the screen foreground and background colors to be changed at the click of a button.
Some individuals with apparently normal eyesight, experience discomfort when viewing computer screens. Some report that the words appear to move, wobble or flicker while others say that the screen appears too bright or the words are too close together."; 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 = ''; } }