<!--

// ricerca browser
if ( document.all ) {

// per intercettare il menu inInternet Explorer
document.oncontextmenu = clic_destro;
}
if ( document.layers ) {

// per intercettare il menu su Netscape 
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = clic_destro;
}


function clic_destro(evento) {

// per Internet Explorer
if ( document.all ) {
return false;
}
else if ( document.layers ) {

// per Netscape, se si è cliccato col tasto destro  (which == 3)
if ( evento.which == 3 ) {
return false;
}

// clic non standard (per mac)
if ( evento.modifiers == 2 ) {
return false;
}
}
return true;
}
//-->