// The Maes Gallery Copyright Message JavaScript Document
// Versie 1.0
// Copyright 2003

<!--
var message= "Copyright ©2006\n\nThe Maes Gallery\n\nAll rights reserved.";
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert(message);
			return false;
		}
	}
	else if (document.layers||document.getElementById) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}

	if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->