// -------------------------------- Desactivation Clic Droit ---------------------------------
function click_IE(){
if (event.button==2){
return false;
}}

document.onmousedown=click_IE;
document.oncontextmenu=new Function("return false");

// ------------------------------------ Gestion Erreurs -----------------------------------
function stopErrors() {
 return true;}
window.onerror = stopErrors;
