function abrejanela(){
	
	check = false;
	for(i=0;i<=document.frmenquete.resposta.length-1;i++)
	{
		if(document.frmenquete.resposta[i].checked == true)
			check = true;
	}
	if(!check){
		alert("Você deve selecionar uma resposta!");
		return false;
	}

	document.frmenquete.acao.value = "votar";

	nj = window.open("","miniwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=320,height=280");
	nj.document.open();
}

function textCounter(campo, countcampo, maxlimit) {
if (campo.value.length > maxlimit) 
	campo.value = campo.value.substring(0, maxlimit); 
else
	countcampo.value = maxlimit - campo.value.length; 
}