var fDesc=new Array(); fDesc[0] = "The focusTimer window is small so you can move it out of your way and focus on the rest of your screen. Once the countdown starts, you can opt to hide the clock so you don't keep glancing at it, and if there's an interruption you absolutely cannot ignore, you can either pause the countdown or cancel it."; 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 = ''; } }