var message="copyright 3corbeaux © 2005";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;



function afficheMaxi(chemin)
 {
 i1 = new Image;
 i1.src = chemin;
 html = '<HTML><HEAD><TITLE>Image</TITLE><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><script src="pv.js" language="JavaScript" type="text/javascript"></script></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><a href="javascript: window.close()"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+60)" alt="cliquez pour fermer"></a></CENTER></BODY></HTML>';
 popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
 popupImage.document.open();
 popupImage.document.write(html);
 popupImage.document.close()
 }

function affiche(chemin) {
	window.open(chemin, '', 'resizable=yes, location=no, width=600, height=500, menubar=no, status=no, scrollbars=yes, toolbar=no');
}