var fDesc=new Array(); fDesc[0] = "ScriptEdit is an application for editing and programming in PHP and HTML. It comes with some useful features such as auto-complete; start typing a function and press the F4 key for a list of all the available functions. This program can also convert accented characters entity automatically."; 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 = ''; } }