var fDesc=new Array();
fDesc[0] = "Autosoft Online Small Business Edition is adapted for Small Auto Shops or home based businesses. Is a limited version of AutoSoft Online Standard Edition, that includes the most used modules like for example: estimates, invoices, customers, vehicles etc.
AutoSoft Online Small Business grows with your business. You can migrate all your information to the standard version later. When your business is ready for a more advanced version.";
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 = '';
}
}