document.onmousedown = noclic;

function send()
{ text = "mailto:?subject=Une visite s'impose"
  text += "&body= Prends quelques minutes pour découvrir ce site. ";
  text += location.href;
  location.href = text;
}

function contact()
{ text = "mailto:arnaud.laygue.belem@free.fr?subject=Information ou photos"
  text += "&body= ";
  location.href = text;
}

function noclic(clic) 
{ var msg="Clic droit non utilisé sur ce site.";
  if (navigator.appName == 'Netscape' && clic.which==3) 
    { alert(msg);
      return false;
	}
  else
    if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) 
	  { alert(msg);
        return false;
      }
    return true;
 }
