function validaContato(confirm){
	var msg = "";
	if (document.contato.nome.value == "") {
	  	msg += "Digite o NOME! \n";
		document.contato.nome.focus();
		document.contato.nome.style.background="#FFFF00";
	}else{
   		document.contato.nome.style.background="#FFFFFF";
   		//msg = "";
  }
  if (document.contato.email.value == "") {
	  	msg += "Digite seu EMAIL! \n";
		document.contato.email.focus();
		document.contato.email.style.background="#FFFF00";
	}else{
   		document.contato.email.style.background="#FFFFFF";
   		//msg = "";
  }
  if (document.contato.assunto.value == "") {
	  	msg += "Selecione o ASSUNTO! \n";
		document.contato.assunto.focus();
		document.contato.assunto.style.background="#FFFF00";
	}else{
   		document.contato.assunto.style.background="#FFFFFF";
   		//msg = "";
  }
  if (document.contato.confirmacao.value == "") {
	  	msg += "Digite a CHAVE DE SEGURANÇA! \n";
		document.contato.confirmacao.focus();
		document.contato.confirmacao.style.background="#FFFF00";
  }else if(confirm != document.contato.confirmacao.value){
		msg += "CHAVE DE SEGURANÇA digitada é inválida!\n";
		document.contato.confirmacao.focus();
		document.contato.confirmacao.style.background="#FFFF00";
	  
  }else{
   		document.contato.confirmacao.style.background="#FFFFFF";
  }
  
  if (document.contato.ddd.value == "") {
	  	msg += "Digite o DDD! \n";
		document.contato.ddd.focus();
		document.contato.ddd.style.background="#FFFF00";
	}else{
 		document.contato.ddd.style.background="#FFFFFF";
 		//msg = "";
  }
  if (document.contato.telefone.value == "") {
	  	msg += "Digite o TELEFONE! \n";
		document.contato.telefone.focus();
		document.contato.telefone.style.background="#FFFF00";
	}else{
		document.contato.telefone.style.background="#FFFFFF";
  }
 
  if (document.contato.coment.value == "") {
	  	msg += "Digite seu COMENTÁRIO! \n";
		document.contato.coment.focus();
		document.contato.coment.style.background="#FFFF00";
	}else{
   		document.contato.coment.style.background="#FFFFFF";
   		//msg = "";
  }
  if(msg != ""){
	  	//document.getElementById("retornoValidacao").innerHTML = msg;
	  	alert(msg);
    	return false;
    }else{
    	document.contato.submit();
    	return true;
    }
}
/**
 * Funçao que aciona a impressão do conteúdo da notícia seleciona, ao clicar no icone
 * */
function imprimeNoticia(divPai,pagina,wid,hei){
//	alert(divPai +" - "+ pagina +" - "+ wid+" - "+hei);
	//return false;
	alert("Atenção \n Será aberto um popup para a impressão, a impressão será ativa automaticamente.");
	var w = wid; /*largura*/
	var h = hei; /*altura*/
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/4;

    var oPrint = ""
    var oJan = "";
    oPrint   = window.document.getElementById(divPai).innerHTML;
    oJan     = window.open(pagina,'print',"height="+h+",width="+w+", top="+y+", left="+x+",scrollbars=yes,status=yes,location=no,toolbar=no,menubar=no");
    oJan.document.write(oPrint);
    oJan.window.print();
    oJan.history.go();
}
