I\'m trying to work this form so when the first radio button is selected, run a certain validation. When the second radio button is selected, run a different validation, etc
You must use the equals operator not the assignment like
if(document.form1.radio1[0].checked == true) { alert("You have selected Option 1"); }