function Poem(poemTitle,copyDate){
	this.title = poemTitle;
	this.content="<h3>"+poemTitle+"</h3>"+
	"<p><small>&copy; "+copyDate+" by Jane Darin</small></p><br>";
}
function poem_add(paragraph){
	var lines=paragraph.split(":");
	this.content+="<p>"+lines.join("<br>")+"</p>";
}
function poem_getHtml(){return this.content;}
function poem_getTitle(){return this.title;}
Poem.INDENT="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
Poem.prototype.add=poem_add;
Poem.prototype.getHtml=poem_getHtml;
Poem.prototype.getTitle = poem_getTitle;