function Report(title, body)
{
	this.title = title ? title : "";
	this.body = body ? body : "";
	this.reportType = "Combat";
	this.planet = null;
	this.fleet = null;
}

Report.ReportTypes = {"Combat":1,"Invasion":2,"Colonization":4,"Production":8,"Research":16}
//Report.ReportTypes = {"Combat":"Combat","Invasion":2,"Colonization":4,"Production":8,"Research":16}
//Report.ReportTypes = ["Combat", "Invasion", "Colonization", "Production", "Research"];

Report.prototype.appendLine = function(line)
{
	for (var a=1; a<Report.prototype.appendLine.arguments.length; a++)
	{
		line = line.replace("{" + (a-1) + "}", Report.prototype.appendLine.arguments[a]);
	}

	this.body += line + "\r\n";
}

Report.prototype.toString = function()
{
	return Util.Format("{0}\r\n\r\n{1}", this.title, this.body);
	//return Util.Format("{0} Report: {1}\r\n\r\n{2}", this.reportType, this.title, this.body);
}

