function mouseDown(e) {
 if (parseInt(navigator.appVersion)>3) {
  var clickType=1;
  if (navigator.appName=="Netscape") clickType=e.which;
  else clickType=event.button;
  if (clickType!=1) {
alert("Copyright (c) 2005 Renacimiento Masonico  \nTodo el codigo HTML e images contenidas son propiedad intelectual del autor.  No intente robarlas o copiarlas.");
}
 }
 return true;
}
if (parseInt(navigator.appVersion)>3) {
 document.onmousedown = mouseDown;
 if (navigator.appName=="Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}

 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
 }