// JavaScript Document
function validatePollform(){
var return_var = false
myOption = -1;
for (i=0; i<document.pollForm.answerChoice.length; i++) {
if (document.pollForm.answerChoice[i].checked) {
myOption = i;
}
}
if (myOption == -1) {
alert("You must select an Option .");
return false;
} else {
return_var = true
}
} 
