function irA(enlace) {
        window.location = enlace;
}
 

function validar_formulario(){ 
	
 
    //valido el nombre 
    if (document.dc.nombre.value.length==0){ 
       alert("Por favor ingresa tu nombre") ;
         
    		return false; 
    } 
		//valido el apellido
    if (document.dc.apellido.value.length==0){ 
       alert("Por favor ingresa tu apellido"); 
      
    	return false; 
    } 
     if (document.dc.email.value.length==0){ 
       alert("Por favor ingresa tu email"); 
      
    	return false; 
    } 
     
   //validar la direccion de email
   if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.dc.email.value))){
      alert("La direccion de email es incorrecta") 
       return false; 
   }
   //valido el como te enteraste
    if (document.dc.como.selectedIndex==0){ 
       alert("Por favor ingresa como te enteraste") 
       
       return false; 
    } 
    //valido el como te enteraste
    if (document.dc.code.value.length==0){ 
       alert("Por favor ingresa el codigo de validacion") 
       
       return false; 
    } 
 	 
 	 
} 

function envia(pag){ 
    document.bus.action= pag 
   
}  
function envia(pag){ 
    document.dc.action= pag 
   
} 


 
