var fDesc=new Array();
fDesc[0] = "Abila MIP is a configurable fund accounting solution that allows you to report and track information that is most important to you, your board and your supporters. It can help you:
- Stay organized –Transactions, budgets and reports are delivered in a way that works for you
- Make informed decisions - Track budget progress throughout the year by creating “what-if” scenarios
- Stay connected - Work on the road with a mobile app that allows you to view key information and perform quick tasks
- Be prepared - Breeze through your audit process with standard and custom reports.";
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 = '';
}
}