jQuery(document).ready(function($){
	var popup_da = "Du er ved at forlade UCBs hjemmeside, og der åbnes en hjemmeside, som tilhører tredjepart. UCB er ikke ansvarlig for og står ikke inde for indholdet af denne trejdeparts hjemmeside.";
	var popup_no = "Du er i ferd med å forlate UCBs hjemmeside og åpne en hjemmeside som tilhører tredjepart. UCB er ikke ansvarlig for og står ikke inne for innholdet av tredjeparts hjemmesider.";
	var popup_sv = "Du håller på att lämna UCBs hemsida, och en hemsida öppnas som tillhör en tredje part. UCB är inte ansvarigt för och garanterar inte innehållet på denna tredje parts hemsida.";
	
	$("a[rel='popup_da']").click(function() {
		return confirm(popup_da);
	});

	$("a[rel='popup_no']").click(function() {
		return confirm(popup_no);
	});

	$("a[rel='popup_sv']").click(function() {
		return confirm(popup_sv);
	});
});

