﻿
/*
var message="Sorry, that function is disabled.\n\nContents & Graphics Copyright Vibram \u00AE\ \nOur work is not Public Domain, and should not be taken from this site.";

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;

*/



/*
// SCRIPT PER DISABILITARE IL TASTO DESTRO FUNZIONANTE CON IE, FIREFOX, SAFARI
var message="Sorry, that function is disabled.\n\nContents & Graphics Copyright Vibram \u00AE\ \nOur work is not Public Domain, and should not be taken from this site.";

function clickIE6(){

if (event.button==2){

alert(message);

return false;

}

}

function clickNS4(e){

if (document.layers||document.getElementById&&!document.all){

if (e.which==2||e.which==3){

alert(message);

return false;

}

}

}

if (document.layers){

document.captureEvents(Event.MOUSEDOWN);

document.onmousedown=clickNS4;

}

else if (document.all&&!document.getElementById){

document.onmousedown=clickIE6;

}

document.oncontextmenu=new Function("alert(message);return false")

*/
