function verificaForm(){
	
	var formulario		= document.getElementById("formContato");
	var nome			= document.getElementById("nome");
	var email			= document.getElementById("email");
	var comentario		= document.getElementById("obs");
	
	var erro			= "";
	
	if (nome.value.length == 0){
		erro		+= 'o campo NOME é de preenchimento obrigatório\n';	
	}
	
	if (email.value.length == 0){
		erro		+= 'o campo E-MAIL é de preenchimento obrigatório\n';	
	}

	if (comentario.value.length == 0){
		erro		+= 'o campo COMENTÁRIO é de preenchimento\n';
	}
	
	if (erro.length == 0){
		formulario.submit();
	}else{
		alert('ATENÇÃO!\n\n'+erro);	
	}
}

function openWindow(url) {
	window.open(url,"_blank","width="+screen.width+",height="+screen.height+",top=0,left=0,toolbar=no,resizable=yes,scrollbars=yes");
}

function habilitaCamposEnquete(){
	
	var input1 	= document.getElementById('vote_input_name');
	var input2 	= document.getElementById('vote_input_email');
	
	if (input1.disabled){
		input1.disabled = false;
		input1.className = "";
	}else{
		input1.disabled = true;
		input1.className = 'input_inativo';
	}
	if (input2.disabled){
		input2.disabled = false;
		input2.className = "";
	}else{
		input2.disabled = true;
		input2.className = 'input_inativo';
	}
}