<!--
function leavesite(obj)
{
	var confirmation = confirm("Please Note: You are about to temporarily leave the Living Beyond Hemophilia Web site by opening a new Web page. The site you are linking to, and any other site after visiting this site, is not controlled or endorsed by Bayer HealthCare, and we are not responsible for the content presented on that site.");

	if(confirmation)
	{
		var newWindow = window.open(obj.getAttribute('href'), '_blank');
		newWindow.focus();
		return false;
	}
	else
		return false;
}

function newwindow(obj)
{

	var newWindow = window.open(obj.getAttribute('href'), '_blank');
	newWindow.focus();
	return false;
}
//-->