var fDesc=new Array();
fDesc[0] = "Finsys is an integrated, affordable, business management solution built from the ground up to meet the immediate and long-term needs of small and midsize businesses (SMBs). It provides a true and unified view of operations across customer relationship management, manufacturing, and finance. Simple to use yet powerful, Finsys-ERP puts business users in charge, arming you with the critical, up-to-the-minute information you need to make smart business decisions.
Some of the benefits of using Finsys-ERP are:
- Increased Profitability, New Levels Of Control For Small And Midsize Businesses
- Comprehensive Business Management Solution
- Access to Precise, Up-to-the-Minute Information
- Decision Makers Are Instantly Notified So They Can Take Quick and Decisive Action
- Flexible and Adaptable to Meet Your Current and Future Business Needs
- An Affordable, Easy-to-Implement Solution";
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 = '';
}
}