javascript seleccionado radio

Quiero comprobar cuál es la entrada de radio seleccionada.

aquí está mi código.

<input name="u_type" type="radio" value="staff" id="u_type" checked="checked" /> Staff
<input name="u_type" type="radio" value="admin" id="u_type" /> Admin
<input id="add_user" name="add_user" type="button" onclick="addUser();"  value="Add" class="submitButton admin_add" />

function addUser()
{
//how to check what is the selected radio input
}

Gracias

Respuestas a la pregunta(6)

Su respuesta a la pregunta