var fDesc=new Array();
fDesc[0] = "Hyro is a nice real-time HTML5 editor.
Main features:
- Desktop HTML5 editor with a live HTML viewer.
- Can be used for Javascript and CSS coding.
- Utilizes the incredible Codemirror text-editor for highlighting and indentation.
- Lightweight and easy to setup. Anyone can use it.
- Customizable UI. You can change the primary UI color at any time. (more customization coming soon).
- Compatible with all platforms: Windows, Mac OSX, and Linux.";
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 = '';
}
}