function noclick()
{
alert("Image protégée, copie interdite !"); 
return false; 
}

function nocopy() 
{
if(document.images) 
for(i=0;i<document.images.length;i++) 
document.images[i].onmousedown = noclick; 
} 
