var fDesc=new Array();
fDesc[0] = "CSE HTML Validator Lite is an award winning free (for personal and educational use) HTML editor and basic syntax checker! CSE HTML Validator Lite v11.02 improves upon the previous lite versions, is more up to date (with HTML5 support), and includes a built-in HTML/XHTML/text editor with dynamic help, syntax highlighting, split view, and spell checking.
Commercial editions are also available; these editions include link checking, a more powerful built-in HTML/XHTML/text editor, a batch wizard, thorough syntax checking, CSS syntax checking, and much more. These editions are recommended for business and government websites and for serious or professional web developers.";
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 = '';
}
}