// WARN ON LEAVE CODE
var warn_on_leave_msg = "\nLinks which take you out of Abbott Laboratories worldwide \n"+
	"web site are not under the control of Abbott Laboratories, \n"+
	"and Abbott Laboratories is not responsible for the contents \n"+
	"of any such site or any further links from such site. Abbott \n"+
	"Laboratories is providing these links to you only as a \n"+
	"convenience, and the inclusion of any link does not imply \n"+
	"endorsement of the linked site by Abbott Laboratories.\n\n"+ 
	"Do you wish to leave this site?";


function warn_on_leave(site) {	
	if (confirm(warn_on_leave_msg)) {
		window.open(site);
	} else {
		return;
	}				
}
	
function warn_on_leave2(site) {	
	if (confirm(warn_on_leave_msg)) {
		window.open(site);
	}
	
	return false;			
}

function warn_on_leave_to_facebook() {	
	if (confirm(warn_on_leave_msg)) {
		fbs_click();
		
	} else {
		return;
	}				
}
