public ReportsFinStatements(XmlDocument finStatements)
 {
     this.FinStatements       = finStatements;
     this.financialStatements = (XmlElement)FinStatements.GetElementsByTagName("FinancialStatements")[0];
     populateMapItems();
     this.BalanceSheet    = populateCompanyInformation("BAL");
     this.IncomeStatement = populateCompanyInformation("INC");
     this.CashFlow        = populateCompanyInformation("CAS");
 }