var message="All contents & graphics © Essentials Jewelry"; // Message for the alert box
// Don't edit below!
function click(e) {
if (document.all) 
{
if (event.button == 2)
{
alert(message);
return false;
}
}
}
document.onmousedown=click;
// -->