/* -------------------------

SiiNet (SIINTERNET, S.L.)
Rutinas Script de cliente.

---------------------------- */


var mensaje="Lo siento, no es posible esta opción.";
function protec(A) {
if (document.all) {
if (event.button == 2) {
alert(mensaje);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=protec;

