var fDesc=new Array(); fDesc[0] = "The Icetips Window Fixer makes sure that the window's X and Y positions are correct so that the window always opens where the user can see it! If the window is outside of the monitor's visible screen, then the window is pulled in. The Icetips Window Fixer works with multiple monitors and works with the latest versions of Clarion in both ABC and Clarion (Legacy) as well as hand coded projects."; 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 = ''; } }