//botón_derecho

var message="Función deshabilitada.\nSitio Desarrolado por DTB\n Fono 56-71-229138\nŠ2007 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 = "La Mejor Cancha de Pasto Sintetico está en TalcaSoccer fono:71-295176"
var velocidad = 0
function inicioWindowStatus(){
	window.status = anuncio
	setTimeout("inicioWindowStatus()",velocidad)
}
inicioWindowStatus();
