// js de protection, avec anti-click droit et anti sélection

// Recupere parametre copyright
var copyright='lerottweiler.net';
var copyrightvalue=String(window.location).match(/premium/i);
if (copyrightvalue!=null) { copyright='KAOWEB'; }
var disableclick=0;

function zobclick(e) {
	var message='Copyright © '+copyright+'. Tous droits réservés !';
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}



if (disableclick==1) {
	if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
	}
	document.onmousedown=zobclick;
}

<!-- FONCTION ANTI SELECTION -->
//Disable select-text script (IE4+, NS6+)
 
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
}


