Automatically selecting a radio button means that a radio button is already selected when the user loads the page. To automatically select a radio button, add the line CHECKED to the <INPUT TYPE="RADIO" NAME="XXXX" VALUE="X"> tag so the final result looks like <INPUT TYPE="RADIO" NAME="XXXX" VALUE="X" CHECKED>.
Disabling a radio button means that the radio button is grayed out and is unable to be edited by the user. To disable a radio button, add the line DISABLED to the <INPUT TYPE="RADIO" NAME="XXXX" VALUE="X"> tag so the final result looks like <INPUT TYPE="RADIO" NAME="XXXX" VALUE="X" DISABLED>.