var closeWin="1"; // Do you want to close window (1 for yes 0 for no) 
var alertVis="1"; // Do you want to alert the visitor (1 for yes 0 for no) 
var message="Allt innehåll tillhör SP Standardt Produkter AB och får ej användas utan vårt tillstånd!"; // Your no right click message this line 
 
/* 
Disable right click script (Annoy-Close) 
By Aimee Beery 
*/ 
 
function detail(){ 
          if(alertVis == "0") alert(message);
          alert("Allt innehåll tillhör Naturlig Häst och får ej användas utan tillstånd.") 
          if(closeWin == "0") self.close(); 
          return false; 
} 
function IE() { 
     if (event.button == "2" || event.button == "3"){detail();} 
} 
function NS(e) { 
     if (document.layers || (document.getElementById && !document.all)){ 
          if (e.which == "2" || e.which == "3"){ detail();} 
     } 
} 
document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false"); 
