var enrollmentContextPath = "http://bruger.lundogbendsen.dk";
function openEnrollmentForm(kursusId) {
	try {
		var url = enrollmentContextPath + "/kursustilmelding/trin1/" + kursusId;
		var width = 445;
		var height = 655;
		var left = parseInt((screen.availWidth / 2) - (width / 2));
		var top = parseInt((screen.availHeight / 2) - (height / 2));
		var windowFeatures = "location=0,menubar=0,toolbar=0,scrollbars=1,width="
				+ width
				+ ",height="
				+ height
				+ ",left="
				+ left
				+ ",top="
				+ top
				+ "screenX=" + left + ",screenY=" + top;
		window.open(url, "_blank", windowFeatures);
	} catch (e) {
		alert("Desværre, din browser er ikke understøttet. Send os venligst blot Deres tilmelding i en email.");
	}
}
