 

function seguridad(e) {
 var mensaje = "El contenido de esta página es propiedad de Señalizaciones y Suministros, S.A.\nQueda totalmente prohibida su reproducción total o parcial.\nCopyright 2008";
 if (navigator.appName == 'Netscape' && e.which == 3) {
  alert(mensaje);
  return false;
 } else if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
  alert(mensaje);
  return false;
 }
 return true;
}

document.onmousedown = seguridad;



