function inicio(){
alert(document.domain);
}


var message = "Prezado leitor,\n\nNão é permitida a utilização desse conteúdo para fins comerciais e/ou profissionais.\nPara qualquer outro tipo de publicação, é necessária autorização prévia. Sendo este o caso, entre em contato conosco. Obrigado";

function copyright ()
{
 //if (document.domain=='localhost') {
  alert(message);
  return false;
  //}
}
// exibe a mensagem de alerta 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'){
    //   if (document.domain=='localhost') {
        alert(message);
 		return false;
       // }
  		}
  	}
  }
}