function copyright() { //v3.0
	  window.open('copyright.html','copyr',config='height=400,width=400');
}

// D'autres scripts sur http://www.toutjavascript.com
// Si vous utilisez ce script, vous devez laisser ce commentaire

function right(evnt) {
	if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
		if (evnt.which >= 2){
			alert("©Copyright Gilbert de Vries");
			return false;
		}
	}
	else if (event.button>=2)
		alert("©Copyright Gilbert de Vries");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

//-->
