﻿// JavaScript Document

var bericht = "Sorry, pictures are not free for distribution !";
function block()
{ return false; }

function click(e) {
    if (document.all) { if (event.button == 2) { alert(bericht); return false; } }
    if (document.layers) { if (e.which == 3) { alert(bericht); return false; } }
}
if (document.layers) { document.captureEvents(Event.MOUSEDOWN); }
document.onmousedown = click;
document.oncontextmenu = block;
