var fDesc=new Array();
fDesc[0] = "WireframePro is a drawing board for brainstorming user interface ideas. It comes with ready-made components for UI such as Web, Bootstrap lib, iPhone, iPad, Android Phone, Apple Watch, and Android Watch. You can export your design to a wide range of formats including photos, MS Word, PDF, and PowerPoint.
WireframePro is available in Basic, Premium, TeamPack, and Enterprise versions.";
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 = '';
}
}