// NE MENTIONNE PAS LES ERREURS JAVASCRIPT
function stopError() {return true;}
window.onerror = stopError;


// SUPPRESSION DE LA SELECTION A LA SOURIS
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
}


// INTERDICTION D'UTILISER LE BOUTON DROIT DE LA SOURIS
function click()
{
if (event.button==2) {alert('Denis MORIN te salue !')}
if (event.button==1+2) {alert('Denis MORIN te salue !')}
}
document.onmousedown=click;

