var fDesc=new Array();
fDesc[0] = "XBRL is a Complete Software Solution for Preparation & Filing of Annual Report in XBRL format.
Features:
- Automatic import of Company Master Data through CIN.
- No need for time consuming & error prone repunching.
- Imports Balance Sheet in Excel (prepared in various ways) to software.
- Easy tagging of data through Balance Sheet & Profit & Loss A/c in Tree View.
- Tagging of financial data for Current Year and Previous Year with taxonomy in one go.
- Tagging of Non Financial data i.e. Auditor’s Report, Directors Report etc. in a simple manner.
- In built Validations at entry level to prevent data entry errors.
- Generation of XBRL Instance Document.
- Automatic Validation of XBRL Instance Document by MCA Validation Tool.
- Facility for Back up & Restoration of Data.
- Facility for Live updates.";
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 = '';
}
}