
var message="Pagina web realizada por Pccoste Informatica Ribadeo -  - Tlfno:  982 13 14 75 email: info@pceo.es    -  Pablo Rodil Villabrille SL";

function click(mouse) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (mouse.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MouseDown); 
function keypressed() {
alert("Pagina web realizada por Pccoste Informatica Ribadeo  - Tlfno:  982 13 14 75 email: info@pceo.es    -  Pablo Rodil Villabrille SL");
}
}
document.onmousedown=click;
document.onkeydown=keypressed;

