Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/03/2004, 13:18
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 4 meses
Puntos: 381
Así a ojo a ver si te sirve algo así

<SCRIPT language=JavaScript>
<!--
function ValidaCampos(theForm)
{
if (theForm.EDAD.value == "")
{
alert("Por favor seleccione su rango de Edad.");
theForm.EDAD.focus();
return (false);
}
if (theForm.NOMBRE.value == "")
{
alert("Por favor ingrese Su Nombre.");
theForm.NOMBRE.focus();
return (false);
}
if (theForm.AFICIONES.value == "")
{
alert("Por favor ingrese sus Aficiones.");
theForm.AFICIONES.focus();
return (false);
}
aficiones1 = 0
for(m=0;m<2;m++){
if(theForm.AFICIONES1[m].checked == true){
aficiones1++
}
}
if(aficiones1==0){
alert('por favor, escoja una afición')
return false
}

}
//-->
</SCRIPT>

Eso comprobará que esté algún radio de aficiones1 seleccionado. Si te funciona bien, repite el código cambiando el 1 por el 2