<!--
function openpopup(page,width,height) {
	var popup1=window.open(page,"popup","top=20,left=20,titlebar=no,scrollbars=auto,resizable=yes,width="+width+",height="+height);
}

function confirm_action(lien,texte){
	if (confirm(texte)){
		location=lien;
	}	 
}

function aff_photo(photo) {
	var html="<html><head><title>Association ARCHIVE - photo</title></head><body topmargin='0' leftmargin='0' bgcolor='black' onload='self.focus();'><TABLE border=0 cellpadding=0 cellspacing=0 width=100% height=100%><TR valign=center align=center><TD><a href='javascript:self.close()'><img border='0' src='"+photo+"'  name='photo' onLoad='window.resizeTo(document.photo.width+20,document.photo.height+55);'></a><div id='Layer1' style='position:absolute; z-index:1; left: 2; top: 2'><a href='javascript:self.close()'><font size='1' color='white' face='sans-serif'>cliquez pour fermer</font></a></div></TD></TR></TABLE></body></html>";
	var fenetre=open("","photo","resizable=yes");
	fenetre.document.close();
	fenetre.document.write(html);
}
//-->