function EnsureRedirect (url) {
	var sConfirmText = "You are now opening an external website outside www.lundbecktrials.com. Links to external sites are provided as a courtesy to our visitors. Lundbeck is not responsible for the content of such sites. Do you wish to continue?";

	if (confirm(sConfirmText)) {
		window.open(url);
	}
}