<!--
function launch_abbott(){
	if(confirm("You are now leaving CMEPain.com and are about to enter a commercial site. Would you like to continue?")){
		window.open("http://www.abbott.com");
		
	} else {
	}
}

//Makes buttons into links
function go(url) {
	location=url
}

//Pop up window
function popup(url,width,height,scrollbars) {
	var winl = (screen.width-width)/2;
	var wint = (screen.height-height)/2;
	var params = ", left=" + winl + ", top=" + wint + ", scrollbars=" + scrollbars + ", status=no, resizable=yes";
	
	window.open(url, "_blank", "width=" + width + ",height=" + height + params);
}
-->