function goodbye(e) {

	

	if(window.location.href.indexOf("cardene") > -1) {
		return;
	}
	else{
		goodbye;
	}
	
	
	
	if(!e) e = window.event;
	//e.cancelBubble is supported by IE - this will kill the bubbling process.
	e.cancelBubble = true;
	e.returnValue = 'You are now leaving an EKR Therapeutics Web site. The Web site to which you are moving is not operated by EKR, and EKR assumes no responsibility for any aspect of the site and its content.'; //This is displayed on the dialog

	//e.stopPropagation works in Firefox.
	if (e.stopPropagation) {
		e.stopPropagation();
		e.preventDefault();
	}
}

//window.onunload=goodbye;