// JavaScript Document

function Comprobar_Privacidad(privacidad)
{
	if(!privacidad.checked)
	{
		alert("Debe de aceptar los términos de protección de datos.");
		return false;
	}
	return true;

}
function Comprobar_Privacidad_EN(privacidad)
{
	if(!privacidad.checked)
	{
		alert("You must agree to the terms and protection data policy");
		return false;
	}
	return true;

}
