if (Calculators == undefined) {
	var Calculators = {};
}
if (Calculators.report == undefined) {
	Calculators.report = {};
}
Calculators.report.Report = function Report(){
    this.getHtmlReport = function(){
        return this.getHeader() + this.getBody() + this.getFooter();
    }
    
    this.getHeader = function(){
        return "<html>\n" +
        "  <head>\n" +
        "    <title>" +
        this.getTitle() +
        "</title>\n" +
        "    <link rel='stylesheet' href='Calculators/report/report.css'></link>" +
        "  </head>\n" +
        "  <body>\n";
    }
    
    this.getFooter = function(){
        return "  </body>\n" +
        "</html>\n";
    }
    
    this.getBody = function(){
        return "";
    }
    
    this.getTitle = function(){
        return "";
    }
}

