function getValueById( id ){
	el = document.getElementsByTagName( 'input' );
	for( x = 0; x < el.length; x++)
		if( el[x].name == id )
			if( el[x].checked == true )
				return el[x].value;
}
function popUp( url ){
	window.open(url, 'enquete_popup','toolbar=no,menubar=no,resizable=no,status=no,scrollbars=no,top=100,left=100,width=330,height=550');
}
function votarPopUp(){
	choice = getValueById( 'choice' );
	if( choice != null ){
		var url = "enquete.php?voto="+choice;
		popUp( url );
	}else{
		alert( "Você deve selecionar uma opção de voto!" );
	}
}
function popEdit(){
	var url = "enquete.php?listar";
	popUp( url );
}
function changeClass( o, c ){
	o.className = c;
}
function go( url ){
	if( confirm( "Deseja realizar esta ação realmente?" )){
		location=url
	}
}