var fDesc=new Array();
fDesc[0] = "Edit HTML, XML and JSP. Manage Struts and Java Server Faces configuration files visually. Amateras IDE is a set of editors for web application development with HTML, JSP, XML, Struts and JSF.
Main features:
-EclipseHTMLEditor is an Eclipse Plugin for HTML / JSP / XML /CSS editing.
-StrutsIDE is an Eclipse Plugin for Struts based visual web application development.
-FacesIDE is an Eclipse Plugin for JSF based visual web application development.";
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 = '';
}
}