
function clicie() {
	// Fonction de détection pour Internet Explorer
	if ((event.button==2)||(event.button==3)) {
		alert("http://www.nomadeoalize.com ....© nomadepalize 2004 by Erfani");
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		alert("http://www.nomadeoalize.com ....© nomadepalize 2004 by Erfani");
		return false;
	}
}


if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}
if (window.sidebar) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}


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
}

