var fDesc=new Array();
fDesc[0] = "Create authentic digital experiences using the most famous front-end framework in the industry. Accelerate production time by working in a real-time browser environment. With no code to worry about, exploring design alternatives is both faster and easier, resulting in killer sites.
Drag in customizable pre-built components like menus, accordions, alerts, tab panels, modal dialogs, and more.
Visually create your own too. Combine elements, add click-action through data attributes and some CSS to create your own off-screen navigations, flex-cards, info-pop-ups, or galleries.";
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 = '';
}
}