// JavaScript Document
var mensaje = "Derechos Reservados F&G Asociados SRL ®  ";
function derecho(e)
{  if (navigator.appName == 'Netscape' && e.which == 3)
      alert(mensaje);
   else if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
      alert(mensaje);
}
document.onmousedown = derecho;
//Funciones para impedir el copiado del texto
function disableselect(e){   return false	}
function reEnable(){   return true	}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
   document.onmousedown=disablesele
}
