function afficheVignette(cheminVignette, cheminMaxi, alt) {
	document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\', \''+alt+'\')"><img src="'+cheminVignette+'" alt="'+alt+'" /></a>');
}
	
function afficheMaxi(chemin, alt) {
	i1 			= new Image;
	i1.src 		= chemin;
	html 			= '<html><head><title>'+alt+'</title></head><body><img src="'+chemin+'" alt="'+alt+'" name="image" onLoad="window.resizeTo(document.image.width+20,document.image.height+90)" /></body></html>';
	popupImage 	= window.open('_blank', 'competition', 'toolbar=no, menubar=yes, location=no, resizable=yes, scrollbars=no, status=no');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}

function evalFormNewsletter(frm) {
	if(frm.elements["firstname"].value == "" || frm.elements["lastname"].value == "" || frm.elements["email_address"].value == "") {
		alert("Tous vos champs ne sont pas remplis");
		return false;
	}
	else {
		return true;
	}
}