// JavaScript Document 


        //<!--
                function ffalse()
                {
                        return false;
                }
                function ftrue()
                {
                        return true;
                }
                document.onselectstart = new Function ("return false");
                if(window.sidebar)
                {
                        document.onmousedown = ffalse;
                        document.onclick = ftrue;
                }
        //-->






/*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 + " - Tous Droits Réservés.";

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;}
