function avaliaMateria(contentPlace,contentPage,contentLoad){
  loadAjax(contentPlace,contentPage,contentLoad);
}

// Dá alert ao dar CTRL+C ou CTRL+A em browsers não-IE
if ((document.getElementById || document.layers) && (!document.all)) {
  document.onkeypress = function (evt) {
    var r = '';
    var ctrl = 0;
    
    if (document.getElementById && (!document.all)) {
      ctrl = evt.ctrlKey;
    }
    else if (document.layers) {
      ctrl = Event.CONTROL_MASK;
    } 
    r = String.fromCharCode(evt.which).toUpperCase();    
    if (ctrl){
    	if (r=='C') alert('AVISO:\nCopyright SíndicoNet - Todos Direitos Autorais Reservados.\nEm caso de reprodução, a fonte deve ser expressamente mencionada no formato: "Fonte: SíndicoNet - www.sindiconet.com.br"');
  	}
  }
}
//IE
function copyright (){
 alert('AVISO:\nEm caso de reprodução, a fonte deve ser expressamente mencionada no formato: "Fonte: SíndicoNet - www.sindiconet.com.br"\n\n DICA:\n Veicule matérias do portal SíndicoNet em seu site, em tempo real.\n Conheça este serviço acessando o canal: SERVIÇOS >> BOX DE NOTÍCIAS na barra de navegação acima do Portal SíndicoNet');
 }
