function PollSubmitted(poll) {
  
  var choice = poll.choice;
  
  for (var i = 0; i < choice.length; i++) {
    if (poll.choice[i].checked) { // checked radio found
      pollWin = window.open("","pollWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizeable=no,copyhistory=no,left=200,top=100,width=257,height=300");
      return true;
    }
  }
  return false;
}

