﻿OCULTO="none";
VISIBLE="block";
 
function mostrar(blo) {

  document.getElementById('gal0').style.display=OCULTO;
  document.getElementById('gal1').style.display=OCULTO;
  document.getElementById('gal2').style.display=OCULTO;
  document.getElementById('gal3').style.display=OCULTO;
  document.getElementById('gal4').style.display=OCULTO;
  document.getElementById('gal5').style.display=OCULTO;
  document.getElementById('gal6').style.display=OCULTO;
  document.getElementById('gal7').style.display=OCULTO;
  document.getElementById('gal8').style.display=OCULTO;
  document.getElementById('gal9').style.display=OCULTO;
  document.getElementById('gal10').style.display=OCULTO;
  document.getElementById('gal11').style.display=OCULTO;
  document.getElementById('gal12').style.display=OCULTO;

  document.getElementById(blo).style.display=VISIBLE;
}


	function validar(){
		var error="";
		if(form1.nombre.value == ''){
			//error= error + "Introduzca Nombre.";
			alert ('Introduzca Nombre.');
			form1.nombre.focus();
			return;
		}

		if(form1.mail.value == ''){
			//error= error + "Introduzca Correo de contacto.";
			alert ('Introduzca Correo de contacto.');
			form1.mail.focus();
			return;
		}

		if(form1.telf.value == ''){
			//error= error + "Introduzca Teléfono de contacto.";
			alert ('Introduzca Teléfono de contacto.');
			form1.telf.focus();
			return;
		}


		
		if (!error){
			form1.action="envio.php";
			form1.submit();
		}else{
			//alert (error);
		}
	}

	
	

 
