
 

/* ############################################# */
/* ##### Protezione testo dal tasto destro ##### */
/* ############################################# */
document.oncontextmenu = function(){return false} 
if(document.layers) 
 { 
  window.captureEvents(Event.MOUSEDOWN); 
  window.onmousedown = function(e)
   { 
    if(e.target==document)return false; 
   } 
 } 
else 
 { 
  document.onmousedown = function(){return false} 
 }
 

 /* ############################################## */
/* ##### Protezione testo dal copia-incolla ##### */
/* ############################################## */
var omitformtags=["input", "textarea", "select"];
omitformtags=omitformtags.join("|");

function disableselect(e)
 {
  if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
   {
    return false;
	}
 }

function reEnable()
 {
  return true;
 }

if (typeof document.onselectstart!="undefined")
 {
  document.onselectstart=new Function ("return false");
 }
else
 {
  document.onmousedown=disableselect;
  document.onmouseup=reEnable;
 }
