var fDesc=new Array();
fDesc[0] = "Wings Accounting Lite is a fully functional accounting software. It is a lighter version of the award-winning Wings Accounting.
Wings Accounting Lite is rich with features to help you manage your accounts and inventory easily: Complete financial accounting including sales, purchases, cash, bank etc., complete inventory management, accounts receivable & payable, and more.
Wings Accounting Lite comes to you free to download and use. You may use it for your personal use and not commercial purposes.";
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 = '';
}
}