dojo.forEach(
		dojo.query("body"),
    function(selectTag) {
    	selectTag.oncontextmenu = alertClic;
    	selectTag.ondragstart = returnFalse;
    	//selectTag.onmousedown = returnFalse;
    }
);
function alertClic(selectTag) {
	alert("All materials on the Website (paintings, textes,...) are registered within 165 countries. They provided by and remain the exclusive property of Eliora Bousquet. Therefore, unless you receive the artist's prior written agreement, you must not reproduce in any form or by any means, in part or entirely, upload, distribute, publish, transmit, modify or sell any such materials from the website. You must not under any circumstances remove any copyright or signature from any painting or any other document from the website. E.Bousquet® is a registered trademark.");
	return(false);
	
}
function returnFalse(selectTag) {
	return(false);
}
