function confirmExit(url) {
	document.getElementById('confirm').innerHTML = '<p>Du lämnar nu upplevsundbyholm.se, och kommer att tas till ' + url+ '</p><p>Fortsätt?</p><p><a href="' + url + '">Ja</a> <a href="javascript:hideConfirm();">Nej</a></p>';
	document.getElementById('confirm').style.display = 'block';
}
function hideConfirm() {
	document.getElementById('confirm').style.display = 'none';
}
