// JavaScript Document

function copyDate () {
	var arr_birthday;
	var birthday = document.getElementById('tx-srfeuserregister-pi1-date_of_birth-preview').value;
	// birthday is put in in format : yyyy/mm/dd
	// and has to be dd/mm/yyyy
	
	if (birthday.length != 0) {
		arr_birthday = birthday.split ("/");
		document.getElementById('tx-srfeuserregister-pi1-date_of_birth').value = arr_birthday[2] + '-' + arr_birthday[1] + '-' + arr_birthday[0];
	}
}

function checkPrivacy () {
	if (!document.getElementById('privacy_ok').checked) {
		alert('U moet zich akkoord verklaren met de voorwaarden inzake \'Privacy\'');
		return false;
	}
}

function checkDisclaimer () {
	if (!document.getElementById('disc_ok').checked) {
		alert('U moet zich akkoord verklaren met de voorwaarden inzake \'Disclaimer\'');
		return false;
	}
}
