var fDesc=new Array(); fDesc[0] = "CssEditor is a CSS editing software that allows you to see your html page change in realtime You load the html page, and then the soft detects the css file and loads the html page and the CSS. Then you can edit the CSS by a property grid, and automatically see the effect on the html page. The GUI uses a property toolbox, to easily change, and guide you in your choice, font color selection box, font box."; 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 = ''; } }