<!--
function protect(evt) 
{
alert('Merci de ne pas copier les photos.');
if (navigator.appName != 'Microsoft Internet Explorer')
{
if (evt.which != 3) 
return true;
}

return false;
}


function trap() 
{
if(document.images)
{
if(navigator.appName != 'Microsoft Internet Explorer' && navigator.appName != 'Netscape')
{
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;
}
}
}

//-->