<!--
var message = "Caro usuario, nao e possivel copiar este conteudo.";

function copyright (){
  // DESCOMENTAR AS DUAS LINHAS ABAIXO AO SUBIR O SCRIPT PARA PRODU??O!!!
 alert(message);
	event.returnValue=false;
}

// desabilita ctrl-c e 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=='A'||r=='C'){
                alert(message);
                return false;
            }
        }

        return true;
    }
}
//-->
