Puedes hacerlo algo así
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
no me deja postear el código
Código HTML:
Ver original<script type="text/javascript"> function chkRadio(r){
if(r.pres[0].checked){
alert('Es el radio del Sí.');
}else{
alert('Es el radio del No.');
}
}
<form action="#" onsubmit="return chkRadio(this.form)"> Si
<input type="radio" name="pres" checked="checked" /><br /> No
<input type="radio" name="pres" /> <input type="submit" onclick="return chkRadio(this.form)" />