
function showBio(o, str, hideDefaultHeader) {
	if (typeof(bilh.refs["popup"]) == "undefined") {
		bilh.register("popup");

		bilh.refs["popup"].layer.onmousedown = function() {
			
		}
	}
						
	bilh.setContent("popup", "<a href=\"#\" onclick=\"bilh.hide('popup'); return false;\"><img src=\"/graphics/icon_close.gif\" align=\"right\" border=\"0\" /></a>" +
								((hideDefaultHeader)? "" : "<p align=\"center\"><strong>QUALIFIED LPs ATTEND FOR FREE</strong><br /><a href=\"http://www.globalpeconference.com/registeredFirms.html\" target=\"_blank\" >View Registered Firms to date!</a></p>") + str );

	var offsetY = o.offsetTop;
	while (o.offsetParent) {
		o = o.offsetParent;
		
		offsetY += 	o.offsetTop;
	}
	
	var y = (bilh.ie5)?	window.event.clientY + ((document.documentElement.scrollTop)? document.documentElement.scrollTop : document.body.scrollTop) - 236 :
						(offsetY - 236) + "px";

	bilh.setTop("popup", y);
	bilh.show("popup");
}

