//D'autres scripts sur http://www.toutjavascript.com
//Si vous utilisez ce script, merci de m'avertir !  < webmaster@toutjavascript.com >
function clicie() {
	// Fonction de détection pour Internet Explorer
	if (event.button==2) {
		alert("Copyright PUBLICIMMO.");
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		alert("Copyright PUBLICIMMO");
		return false;
	}
}
if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}