
/* Autore:           Stefano Bosio, webmaster@bosio.ch */
/* Creazione:        12.03.2006 */
/* Ultima modifica:  23.03.2006 */
/* Descrizione:      Disattiva il tasto destro del mouse per tutte le pagine del sito www.bricks-on-rails.ch */

var message="Copyright Stefano Bosio, 2006. Tutti i diritti riservati.";
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;

