﻿function ValidarPresupuestoOnline(){
	if (document.getElementById("acepto").checked==false){
		alert('Debes aceptar los terminos para poder enviar el formulario');	
		return false;
	}
	
	return true;
} //fin funcion


function ValidarContacta(){
	if (document.getElementById("email").value==''){
		alert('Debes escribir al menos tu dirección de email');	
		return false;
	}
	
	return true;
} //fin funcion


function ValidarProteccionDeDatos(){
	if (document.getElementById("acepto").checked==false){
		alert('Debes aceptar la politica de privacidad');	
		return false;
	}
	
	return true;
} //fin funcion

