// JavaScript Document
/**
* Eric Karolewicz
* Piano et Guitare Khâro
* Blocage copie textes et images
* http://pianoetguitare.free.fr  http://www.kharo.net */

// begin - Pas de sélection de texte
function disableselect(e) {
  return false;
}

function reEnable() {
  return true;
}

document.onselectstart = new Function("return false");
if(window.sidebar) {
  document.onmousedown=disableselect;
  document.onclick=reEnable;
}
// end

// begin - Pas de sélection d'images
function protect(evt) {
  if(navigator.appName != 'Microsoft Internet Explorer') {
    if(evt.which != 3)
      return true;
  };
  alert("Désolé, vous n'avez pas la permission de copier les images.");
  return false;
}

function trap() {
  if(document.images) {
    if(navigator.appName != 'Microsoft Internet Explorer') {
      for(i=0;i<document.images.length;i++)
        document.images[i].onmousedown = protect;
    } else {
      for(i=0;i<document.images.length;i++)
      document.images[i].oncontextmenu = protect;
    }
  }
}

// End -->
