<!--

function script_poll(tipo){

  if (tipo=="result"){
 	URL='m_pollres.asp';
	var myWin=window.open(URL,"sondaggio1","toolbar=no,scrollbars=yes,resizable=no,width=450,height=510");
	myWin.focus();
	}

  if (tipo=="history"){
        URL='m_pollhist.asp'
        var myWin=window.open(URL,"sondaggio1","toolbar=no,scrollbars=yes,resizable=no,width=450,height=510")
        myWin.focus()
    }

  if (tipo=="vote"){
	 c=99
	 v=0
	 for (var i = 0; i < document.SONDAGGIO.R1.length; i++) {
	  if (document.SONDAGGIO.R1[i].checked) {
	      c=c+1;
	      v=document.SONDAGGIO.R1[i].value;
	    }
	  }

	 if (c==99)
	   {
	   alert ("ATTENZIONE!! Effettuare una scelta")
	   return 22
	   }

	 URL='m_pollres.asp?R1='+v+'&action=vote'
	 var myWin=window.open(URL,"sondaggio1","toolbar=no,scrollbars=yes,resizable=no,width=450,height=510")


	 myWin.focus()
	return true
  }
}

// -->
