

<!-- Begin
function protect(e) {
	if(!document.all) {
		//firefox
		if (e.button==2||e.button==3)
		{
		  e.preventDefault();
		  e.stopPropagation();
		  alert("Copyright Carat Duchatelet Group");
		  return false;
		}
	}
	else if (event.button == 2) {
		//IE
		alert("Copyright Carat Duchatelet Group");
		return false;
	}
}

function imageProtect() {
	if(document.images)
		for(i=0;i<document.images.length;i++)
			document.images[i].onmousedown = protect;
		for(i=0;i<document.images.length;i++)
			document.images[i].onclick = protect;
}
	
// End -->