function chkSurvey() {
    for (i=0; i<document.surveyForm.vote.length; i++) {
        if (document.surveyForm.vote[i].checked) {
            return true;
        }
    }
    alert(errorNoVote);
    return false;
}