// JavaScript Document
function validacion(){
	
	empresa = document.getElementById("empresa").value;
	if( empresa == null || empresa.length == 0 || /^\s+$/.test(empresa) ) {
		alert("Debe introducir un nombre de empresa");
		return false;
	}
	
	nombre = document.getElementById("nombre").value;
	if( nombre == null || nombre.length == 0 || /^\s+$/.test(nombre) ) {
		alert("El nombre es un campo obligatorio");
		return false;
	}
	
	email = document.getElementById("email").value;
	if( !(/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@+([_a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]{2,200}\.[a-zA-Z]{2,6}$/.test(email)) ) {
	  	alert("Debe introducir un email valido");
	  	return false;
	}
	
	texto = document.getElementById("texto").value;
	if( texto == null || texto.length == 0 || /^\s+$/.test(texto) ) {
		alert("Debe introducir un mensaje ");
		return false;
	}

	politica = document.getElementById("politica");
   if (politica.checked==false){
	   alert('Debe aceptar la politica de privacidad');
	   return false;
   }

}
