var fDesc=new Array();
fDesc[0] = "Editor for many web languages - HTML, XHTML, CSS, JavaScript,
AJAX, PHP, XSLT, RSS, SVG, SMIL,...
Easy to use - Intuitive interface, button and code hints and help,
one click insertion of code, tags and programming blocks,...
Code helpers and wizards - Intellisense for many languages,
code formatings, code checkers, new document templates..
Functions - variety of built in functions, code manipulators,
search engine, previewing and capturing, in-code image viewing,...
References - many web language references, hints,
objects, functions, properties and keywords tree pickers and lists,...
Internal viewer - Viewing documents, and
manipulating with objects in visual stage,..";
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 = '';
}
}