/* AUTEUR: CompuNet BBS */
/* DATE DE CREATION: 06.08.00 */
function protect(evt) 
{
  if (navigator.appName != 'Microsoft Internet Explorer')
  {
    if (evt.which != 3) 
      return true;
  };
  alert("Copyright Compunet BBS 2000-2002\n\nDé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;
		document.onmousedown = protect2;
    }
    else
    {
      for(i=0;i<document.images.length;i++)
        document.images[i].oncontextmenu = protect;
		document.oncontextmenu = protect2;
    }
  }
}

function protect2(evt) 
{
  if (navigator.appName != 'Microsoft Internet Explorer')
  {
    if (evt.which != 3) 
      return true;
  };
  alert("Copyright Compunet BBS 2000-2002\n\nToutes copies et/ou reproductions\nsans autorisation écrite préalable\nferont l'objet de poursuites selon\nles lois de la convention internationale.");
  return false;
}

