﻿function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html><head><title>ZOOM</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
	<center><img src="'+chemin+'" border="0" name="imageTest" onload="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)">
	</center></body></html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	
function checkCheckBox(f,message){
if (f.agree.checked == false )
{
alert(message);
return false;
}else
return true;
} 	
