function checkSondaggio() {
  var ValoriRadio = "";
  var i;
  with(document.frmSondaggio)
    for (i = 0; i < elements.length; ++i) {
      if (elements[i].type == "radio" && elements[i].checked == true) {
        apriSondaggio("/sondaggi/bianco.htm",320,400)
        return true;
      }
    }
  alert("Non e' stata effettuata alcuna selezione ");
  return false;
}

function apriSondaggio(page,w,h) {
  var l = (screen.width  - w) / 2; //Per posizionare la finestra al centro
  var t = (screen.height - h) / 2; //Per posizionare la finestra al centro
  var RemoteWin = window.open (page,"f_risultati","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",top="+t+",left="+l);
  RemoteWin.focus();
}
