function confirmation(url) {
	var message = "You are now leaving the AeroChamber website. Links to other websites are provided as a service to you. Forest Laboratories accepts no responsibility for the content  of other websites. Would you like to continue?";
	if (confirm(message)) {
	 window.open(url);
	}
}

