//botón_derecho

var message="Función deshabilitada.\nSitio Desarrolado por DTB\n Fono 56-71-229138\nŠ 2011 Todos los derechos reservados"; 

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

//barra de Estado
var anuncio = "Restaurant Carnes y Pastas, Lo mejor en pastas en Talca"
var velocidad = 0
function inicioWindowStatus(){
	window.status = anuncio
	setTimeout("inicioWindowStatus()",velocidad)
}
inicioWindowStatus();

