function inicio(){
alert(document.domain);
}

if (copiaFechada==undefined) {var copiaFechada = false;}

if (copiaFechada) {
  var message = "ATENÇÃO! Não são permitidas cópias parciais e/ou integrais deste conteúdo para fins comerciais ou profissionais. Sujeito às penas previstas em lei.";
}
else {
  var message = "ATENÇÃO! Não são permitidas cópias parciais e/ou integrais deste conteúdo para fins comerciais ou profissionais. Sujeito às penas previstas em lei.";

}
function copyright ()
{
 if (document.domain=='www.churrasquinhojundiai.com.br') {
  alert(message);
  if (copiaFechada) return false;
  }
}

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=='www.churrasquinhojundiai.com.br') {
        alert(message);
        if (copiaFechada) return false;
        }
  		}
  	}
  }
}