<!--
var winVote;
function ViewVote(){
 winVote = null;
 LeftPos = (screen.width)?(screen.width-380)/2:100;
 TopPos = (screen.height)?(screen.height-320)/2:100;
 settings = "width=380,height=320,top=" + TopPos + ",left=" + LeftPos + ",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
 winVote = window.open("/templates/blank.html","VoteResult",settings);
}
function ViewLastVote(){
 winVote = null;
 LeftPos = (screen.width)?(screen.width-380)/2:100;
 TopPos = (screen.height)?(screen.height-320)/2:100;
 settings = "width=380,height=320,top=" + TopPos + ",left=" + LeftPos + ",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
 winVote = window.open("/cgi-bin/vote/vote.cgi?load=lastpoll","LastVoteResult",settings);
}
function verify(){
 var voteCheck = false;
 for (var i = 0; i < document.forms['voteform'].option_selected.length; i++)
 {
  if (document.forms['voteform'].option_selected[i].checked == true) {
   voteCheck = true;
   ViewVote();
   break;
  }
 }
 if(voteCheck == true){
  return true;
 }else{
  alert("Проверьте введенные данные, пожалуйста.\nНет смысла отправлять незаполненную анкету.");
  return false;
 }
}
// -->
