//************************************************ENQUETES
function enqueteVotar(theURL,winName,features,param,newWin) { //v2.0 */	
	var frm = document.formEnqueteJoomla;
	var radio = document.formEnqueteJoomla.votoEnquete;
	var botaoVotar = document.formEnqueteJoomla.EnqueteBotaoVotar;
	var ms = document.getElementById("msgenquete");
	if(newWin == 1){
		var msVoto = document.getElementById("formVotoComputado");
	}	
	var msCampos = document.getElementById("formCamposEnquete");
	
	for(var i = 0; i < radio.length; i++) {		
		if(radio[i].checked) {			
			for(var j = 0; j < radio.length; j++){
					radio[j].disabled = "disabled";
			}
			botaoVotar.style.display = "none";			
			//ms.style.display = "none";			
			theURL = theURL + "&" + param + "=" + radio[i].value;			
			if(newWin == 1){
				msVoto.style.display = "block";
				openWindow(theURL,winName,features);
			} else {
				document.location = theURL;				
			}
			for(var i = 0; i < radio.length; i++) {	
				radio[i].disabled = "disabled";	
			}
			return;
		}
	}
	ms.style.display = "block";
}
function enqueteResultadoOuVotar(theURL,winName,features,param,id,newWin) { //v2.0 */				
		theURL = theURL + "&" + param + "=" + id;
		if(newWin == 1){
			openWindow(theURL,winName,features);	
		} else {
			document.location = theURL;
		}		
}