window.onkeypress = protection; window.oncontextmenu = protection; document.body.onmousedown = "return false"; document.body.onselectstart = "return false"; document.body.style.MozUserSelect = "none"; function protection(e) { if (e.which==3 || e.which==99) { alert("All images and artwork are copyright protected. Using these images without permission is a direct violation of those rights."); return false; } }