// JavaScript Document
function check(flag) {
	if (flag.checked) {
		return true;
	}
	else{
		alert("If you don't agree with the Privacy Law 675/1996 \nyour account cannot be created.");
		
		return false;
	}
}
