function validaAceite(frm){
	if (frm.aceite.checked){
		return (true);
	}
	else {
		alert("Você deve aceitar o regulamento para continuar.");
		return (false);
	}
}

function validaSugestao(frm){
	if ((frm.nome.value.length < 1) || (frm.nome.value == 'Sugestão de nome')){
		alert("Preencha todos os campos");
		frm.nome.focus();
		return (false);
	}
	if ((frm.endereco.value.length < 1) || (frm.endereco.value == 'Sugestão do endereço do site')){
		alert("Preencha todos os campos");
		frm.endereco.focus();
		return (false);
	}
}

function confirma(hp){
	if (confirm('Deseja realmente excluir esta sugestão?\nTodos os votos serão perdidos.')){
		document.location = hp;
	}
}

function abreRecuperaSenha(rootPath){
	w = 480;
	h = 350;
	largura = screen.width;
	altura = screen.height;
	XX =(largura-w)/2;
	YY = (altura-h)/2;
	janela = window.open(rootPath+'/home/senha/','RECUPERARSENHA','width='+w+',height='+h+',left='+XX+',top='+YY+',scrollbars=no,status=no,resizable=no,toolbar=no,directories=no,menubar=no');
	janela.focus();
}
