function EmailValido(campo) {
	if (campo.value.length == 0)
	{
		return true
	}
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(campo.value)){
		return true
	}
	return false
}