function showAbstract(o, str, hideDefaultHeader) {
	if (typeof(bilh.refs["popup"]) == "undefined") {
		bilh.register("popup");

		bilh.refs["popup"].layer.onmousedown = function() {
			bilh.hide("popup");
		}
	}

	bilh.setContent("popup", "<a href=\"#\" onclick=\"bilh.hide('popup'); return false;\"><img src=\"/shared/images/icon_close.gif\" align=\"right\" border=\"0\" /></a>" +
								((hideDefaultHeader)? "" : "<strong>Session Description</strong><br /><br />") + 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) - 300 :
						(offsetY - 300) + "px";

	bilh.setTop("popup", y);
	bilh.show("popup");

}

// IMM 10-30-09: Modified to utilize jQuery to get correct top offsets
function showBio2( id, str, hideDefaultHeader )
{
	if (typeof(bilh.refs["popup"]) == "undefined") 
	{
		bilh.register("popup");

		bilh.refs["popup"].layer.onmousedown = function() 
		{
		}
	}

	y = $('#' + id).offset().top;

	bilh.setContent("popup", "<a href=\"#\" onclick=\"bilh.hide('popup'); return false;\"><img src=\"/shared/images/icon_close.gif\" align=\"right\" border=\"0\" /></a>" +((hideDefaultHeader)? "" : "<strong>Presenter Bio</strong><br /><br />") + str );

	$('#popup').css("top",y);
	bilh.show("popup");
}

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=\"/shared/images/icon_close.gif\" align=\"right\" border=\"0\" /></a>" +((hideDefaultHeader)? "" : "<strong>Presenter Bio</strong><br /><br />") + 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) - 300 : (offsetY - 300) + "px";

	bilh.setTop("popup", y);
	bilh.show("popup");
}

