// Documento JavaScript SBT - Sistema Brasileiro de Televisao
function validaCamposRadio(c){
	var checado = false;
	for(var i=0; i < c.length; i++){
		if(c[i].checked){
			checado = true;
		}
	}
	if(checado){
		return true;
	}else{
		return false;
	}
}

function verificaForm() {
	if(!validaCamposRadio(formquiz.resposta)){
		alert("Selecione uma resposta."); 
		return false;
	}
	return true;
}

function Abre(theURL,winName,features) {
  window.open(theURL,winName,features);
}