function biography( text, location, style )
{
	this.text = text;
	this.style = style;
	this.bio_elmt = document.getElementById( location );
	
	this.display = bio_display;
}


function bio_display()
{
	this.bio_elmt.innerHTML = "<span class = '" + this.style + "'>" + this.text + "</span>";
}
