var fDesc=new Array();
fDesc[0] = "Talika.green is a software developed for financial accounting systems suitable for small and medium businesses. Helps the business owner to keep records or financial information.Talika.green is based on double data entry standard accounting.Features:
- Multiple Company / Firm Support
- Backend Database (Microsoft SQL Server Compact Edition)
- User Friendly Configuration
- Double System Data Security (Database Password, Talika User Password)
- User Groups (Administrator, Power User, Super User, Operators, and Guest)
- Export reports to (MS Word, Crystal Report, PDF File, MS Excel …)
- All report generation in crystal report.
- Backup and Restore";
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 = '';
}
}