// JavaScript Document 


function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

/*var var_text="<%=adm_entreprise_nom%>";

js_text = "Copyright © 2008 " + var_text + " - Tous Droits Réservés.";
*/
dt_text = new Date().getFullYear()
js_text = "Copyright © " + dt_text + " - All rights reserved.";

function clicie() {
	// Fonction de détection pour Internet Explorer
	if ((event.button==2)||(event.button==3)) {
		alert(js_text);
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		alert(js_text);
		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;}
