var resultWnd
function resultado() {
resultWnd = open("enquete/resultado_enquete.php", null, 
				 "toolbar=no,menubar=no,width=300,height=350,screenX=0,screenY=0");
}


///////////////////////////////////////////////////////////


var resultWnd
function result() {
resultWnd = open("resultado_enquete.php", null, 
				 "toolbar=no,menubar=no,width=300,height=350,screenX=0,screenY=0");
}


////////////////////////////////////////////////////////////


function votar(){
var controle = 0;
for (i=0;i<document.form.voto.length;i++){
if (document.form.voto[i].type == "radio"){
if (document.form.voto[i].checked == true){
controle++
document.form.action = "enquete/votar_enquete.php";
document.form.submit();
} } }
if (controle <= 0){
alert("Escolha uma opção para Votar!");
return false;
}
}