var fDesc=new Array(); fDesc[0] = "This is a very simple program that can fix stuck pixels on your LCD monitor. This program will work in the majority of cases but is not always successful, but it is obviously worth a try. It really depends on what is causing the pixel to become stuck. This program will display flashing colors which make it unsuitable for users with Photo-Sensitive Epilepsy."; 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 = ''; } }