var fDesc=new Array(); fDesc[0] = "Even well-designed programs can conceal obscure bugs and inefficiencies. Stop wasting time and cluttering your programs with #DEBUG and SHOW statements. Discover what your program is really doing, as it does it, in real time.
SP Debugger for SQR is a flexible, easy-to-use tool that helps you monitor and interact with your program on a line-by-line basis. It's an affordable solution that could pay for itself in time savings with your next program fix."; 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 = ''; } }