// AJAX:
// javascript:Ajax('id_contenedor', 'url_pagina');

function validar(v){
		
	var nowcont= true;
	
	if ((v.name.value)=="") {
		
		//if (valor == "") {
			document.getElementById("alerta").innerHTML="<p>Debe decirnos su nombre de contacto</p>";
			document.getElementById("formulario").name.focus();
			document.getElementById("formulario").name.className='error';
			document.getElementById("alerta").className='';
			nowcont= false;
		
	}
	if (nowcont== true) {
		if ((v.telefono.value)=="") {
			
			//if (valor == "") {
				document.getElementById("alerta").innerHTML="<p>Debe decirnos su telefono de contacto</p>";
				document.getElementById("formulario").telefono.focus();
				document.getElementById("formulario").telefono.className='error';
				document.getElementById("alerta").className='';
				nowcont= false;
			
		}
	}
	if (nowcont== true) {
		if ((v.provincia.value)=="") {
			
			//if (valor == "") {
				document.getElementById("alerta").innerHTML="<p>Debe decirnos su provincia de residencia</p>";
				document.getElementById("formulario").provincia.focus();
				document.getElementById("formulario").provincia.className='error';
				document.getElementById("alerta").className='';
				nowcont= false;
			
		}
	}
	if (nowcont== true) {
		if ((v.ciudad.value)=="") {
			
			//if (valor == "") {
				document.getElementById("alerta").innerHTML="<p>Debe decirnos su ciudad de residencia</p>";
				document.getElementById("formulario").ciudad.focus();
				document.getElementById("formulario").ciudad.className='error';
				document.getElementById("alerta").className='';
				nowcont= false;
			
		}
	}
	if (nowcont== true) {
		if ((v.my_email.value)=="") {
			
			//if (valor == "") {
				document.getElementById("alerta").innerHTML="<p>Debe decirnos su e-mail valido</p>";
				document.getElementById("formulario").my_email.focus();
				document.getElementById("formulario").my_email.className='error';
				document.getElementById("alerta").className='';
				nowcont= false;
			
		}
		
		else if (!v.cgu_accept.checked) {
		//if (valor == "") {
				document.getElementById("alerta").innerHTML="<p>Debe leer y aceptar las Condiciones Legales</p>";
				document.getElementById("formulario").cgu_accept.focus();
				document.getElementById("formulario").cgu_accept.className='error';
				document.getElementById("alerta").className='';
				nowcont= false;
			
		}
		
	
	}
	if (nowcont == true) {
		eseAjax();
	}
	return nowcont;
}
