function CheckPoll(){
var chk;

  if(!document.polls.poll_text_id.length){
                             if(document.polls.poll_text_id.checked == true){
                                                                             chk = true;
                                                                             } else {
                                                                                     chk = false;
                                                                                      }
                                          } else{

  for( i=0 ; i < document.polls.poll_text_id.length ; i++ ){
      if( document.polls.poll_text_id[i].checked == true )
      chk = true;
  }

                                                 }

  if ( chk ){
     return true;
                             }else{
                                    alert("Δεν έχετε επιλέξει απάντηση για τον δημοψήφισμα.");
                                    return false;
                                             }

                     }

