function clicie() {
	// Fonction de détection pour Internet Explorer
	if (event.button==2) {
		alert("Copyright © The Sweet Transvestites & Perry Bedden");
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		alert("Copyright © The Sweet Transvestites & Perry Bedden.");
		return false;
	}
}
if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}


