function getEl(id) {
	return document.getElementById(id);
}
function validateForm() {
	getEl('submit').disabled = true;
	// nog veel code hier (form check)
	return true;
}
function closePopup() {
	window.close();
}
function hideError() {
	document.getElementById('error').style.display = 'none';	
}
