/*
  function to prevent the use of the right mouse button to save an image
*/

var mouse = {

button:function(e)
{
  var evtobj = window.event ? window.event : e;

  if (evtobj.button == 2)
    window.alert("PROTECTION ACTIVEE");
}
}

document.onmousedown = mouse.button;

