var fDesc=new Array();
fDesc[0] = "Themler is an app that allows you to create amazing CMS themes without coding.
Main features:
- Powerful User Interface with hundreds of options allows you to customize colors, fonts, layouts and more.
- Use the full power of drag-n-drop design, making Themler as as easy to use as Microsoft and Adobe tools.
- Great presets to quickly configure multiple options.";
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 = '';
}
}