Sorry this might be really simple but there is a reason my nickname is jq noob! I was wondering how to convert this JS function into proper Jquery code.
function uncheckRadio(obj) {
var choice = eval("document.editResource." + obj.name);
for (i = 0; i < choice.length; i++)
{
choice[i].checked = false;
}
}

