que tal vanil18, trate de achicar un poco tu código, es mejor que lo estudies...
Código:
<html>
<head>
</head>
<script>
function validar(){
o = document.forms[0].sexo;
for(i=0;i<o.length;i++){
if(o[i].checked){
alert("Ha seleccionado "+o[i].value);
break;
}
}
if(i>o.length-1){
alert("Seleccione sexo");
return false;
}
}
</script>
<body>
<form onSubmit="return validar()">
<b>Sexo:</b>
<input type="radio" name="sexo" value="hombre">Masculino
<input type="radio" name="sexo" value="mujer">Femenino
<br />
<input type="submit" value="Conectar">
</form>
</body>
</html>
salu2