var fDesc=new Array(); fDesc[0] = "VB Code Editor, or VBCE, is a small application that allows you to store all your code snippets found on the internet. It places them all in an easy to navigate folder view so that you can choose what you want to see, and you can load it. Perfect for VB Programmers that have code all over their hard drive. It colors code to match what the code would look like in VB to make it easier to read through."; 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 = ''; } }