function validar(){ 
	var c=0;
    //nombre 
    if (document.form1.institucion.value.length==0){ 
       alert("Introduzca su nombre de su Institucion"); 
       document.capacitacion.institucion.focus(); 
       return 0;
	   c=1;
    } 
   //apellidos
    if (document.form1.nombre.value.length==0){ 
       alert("Introduzca el nombre del representante "); 
       document.capacitacion.nombre.focus(); 
       return 0; 
	   c=1;	   
    } 
    
   //email 
	if (document.form1.email.value.length==0){
		alert("Introduzca su e-mail"); 
		document.capacitacion.email.focus(); 
		return 0;
   	c=1;	
	}
	   //direccion
	if (document.form1.direccion.value.length==0){
		alert("Introduzca la Direccion de la Institucion"); 
		document.capacitacion.email.focus(); 
		return 0;
   	c=1;	
	}
	//telefono
	if (document.form1.telefono.value.length==0){
		alert("Introduzca el Telefono de la Institucion"); 
		document.capacitacion.telefono.focus(); 
		return 0;
   	c=1;	
	}
	//mensaje
	if (document.form1.mensaje.value.length==0){
		alert("Introduzca su Mensaje a enviar"); 
		document.capacitacion.mensaje.focus(); 
		return 0;
   	c=1;	
	}
	if (c==0){	
	document.form1.submit();
	}
}
