Funziona con IE:

<input name=pippo type=radio
onclick="if(this.x) this.checked=false; this.x=this.checked">

altrimenti sei obbligato ad utilizzare una variabile globale...

<script>var x=false;</script>
...
<input name=pippo type=radio
onclick="if(x) this.checked=false; x=this.checked">

ciao