var fDesc=new Array();
fDesc[0] = "MicroBiz for Windows is Windows-based POS/retail management software which is installed on your PC and purchased through a one-time upfront perpetual software license.
MicroBiz for Windows is for single-store operations in a variety of retail verticals, and does not integrate with the Magento e-commerce platform. If you are looking for multi-store management or integration with E-commerce, please check out our MicroBiz Cloud product.";
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 = '';
}
}