pues fijate lo hice aca y me funciono bien no se cual sea tu problema
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript"> function validar(form){
if (form.nombre[0].checked==true || form.nombre[1].checked==true){
alert("Lo hizo");
return true;
}
else{
alert("no lo hizo");
return false
}
}
<form name="form1" action="" method="post" onsubmit="return validar(this)"> <input type="radio" value="borrar" name="nombre" >Borrar
<br> <input type="radio" value="borrar" name="nombre" >Mal
<br> <input type="submit" value="..."> <form name="form2" action="" method="post" onsubmit="return validar(this)"> <input type="radio" value="borrar" name="nombre" >Borrar
<br> <input type="radio" value="borrar" name="nombre" >Mal
<br> <input type="submit" value="...">
pruebalo y me avisas saludo