function open_close(bio_id) {
	var linkname = bio_id + "_link";

	if (document.getElementById(bio_id).className == "closed") {
		document.getElementById(bio_id).className = "open";
		document.getElementById(linkname).firstChild.nodeValue = "-";
	} else {
		document.getElementById(bio_id).className = "closed";
		document.getElementById(linkname).firstChild.nodeValue = "+";
	}
}
