// JavaScript Document
// Enviar Dados - Enquete
function votarenquete(enquete) {

	var indice;
	var escolheu;
	var resposta;
	
	escolheu = false;
	
	for (indice=0; indice < document.getElementsByName("r").length; indice++) {
		if (document.getElementsByName("r")[indice].checked) {
			resposta = document.getElementsByName("r")[indice].value;
			escolheu = true;
		}
	}
	
	if (escolheu) {
		window.open('enqueteresultado.asp?c=' + enquete + '&r=' + resposta, 'janEnquete', 'toolbar=no,location=no,scrollbars=yes,width=340,height=450,resizable=no,left=60,top=90');
	}
	else {
		alert('Escolha uma resposta antes de votar!');
	}
}

function resultadoenquete(enquete) {
	window.open('enqueteresultado.asp?c=' + enquete, 'janEnquete', 'toolbar=no,location=no,scrollbars=yes,width=340,height=450,resizable=no,left=60,top=90');
}

function exibeenquete(enquete) {
	window.open('enquete.asp?c=' + enquete, 'janEnquete', 'toolbar=no,location=no,scrollbars=yes,width=340,height=450,resizable=no,left=60,top=90');
}
//Function to open pop up window
function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}