var fDesc=new Array();
fDesc[0] = "Tigra Menu Builder for Windows is free application that helps to create cross-browser DHTML navigation systems. No JavaScript programming skills are required to build responsive, professionally looking drop down menus using this rapid development tool.
Main Features:
- Live preview (WYSIWYG) - while building the menu see it exactly as it will appear on your web page.
- Import files - import and modify existing Tigra Menu configuration hassle free
- Export files - update the site with minimum efforts
- All configuration parameters of popular Tigra Menu navigation system are supported
- No programming skills required";
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 = '';
}
}