
function go_vote(){
window.location = "poll.php"
}

function validate_vote(){
var radio_choice = false;
for (counter = 0; counter < frmVote.radVote.length; counter++)
{
// If a radio button has been selected it will return true
// (If not it will return false)
if (frmVote.radVote[counter].checked)
radio_choice = true; 
}

if (!radio_choice)
{
// If there were no selections made display an alert box 
alert("Please select a choice before submitting your vote.")
return (false);
}
return (true);
}


