function Clic_IE() {
	// Détection Internet Explorer
	if (event.button==2) {
		alert("Copyright carphaz.com");
	}
}
function Clic_Netscape(e){
	// Détection Netscape
	if(e.which==3){
		alert("Copyright carphaz.com");
		return false;
	}
}
if (document.all) {	document.onmousedown=Clic_IE;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = Clic_Netscape;}
