var fDesc=new Array(); fDesc[0] = "As a programmer, one of the best feelings in the world is writing something that makes you want to call your programming buddies over and say, "This is cool! Check this out." Sometimes it happens while developing a prototype or proof of concept. Sometimes it's just a crazy idea you decided to experiment with.
We have these moments at SlickEdit too, and decided to gather some of them up and put them out there for others to use for free. We call these SlickEdit Gadgets. Some of the gadgets provide useful utilities and some of them are just for fun. We hope that as you go through these, at least one of them will make you want to call your office mates over to check it out."; 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 = ''; } }