The Radio object represents a check box within an HTML form.
A check box is created using the HTML tag and specifying the TYPE attribute as radio.
<html> <head> <title> Example of the Radio object title> </head> <body> <form name="form1"> <input type="radio" name=button1 ?onClick='alert(document.form1.button1.name)'>Box 1 <br> <input type="radio" name=button2>Box 2 <br> </form> </body> </html>