<!-- Inizio
// DISABILITA IL TASTO DX DEL MOUSE E LA TASTIERA!
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert(" * * * The Crazy Red Rose * * * ");
return false;
}
return true;
}

if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function keypressed() {
alert(" * * * The Crazy Red Rose * * * ");
}
document.onmousedown=right;
document.onkeydown=keypressed;
// Fine-->



// Funzione non disponibile 01!
var message="Funzione non disponibile";
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;
// --> 


// Funzione non disponibile 02!
function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}