function Zoom(img) 
	{ 
	if (img != '')
		{
		var titre="Agrandissement"; 
		var w=open("",'image','width=400, height=400, toolbar=no,scrollbars=yes,resizable=no'); 
		w.document.write("<html><head><title>"+titre+"</title><link href='/fr/css/site.css' rel='stylesheet' type='text/css'></head>"); 
		w.document.write("<script language='javascript' type='text/javascript'>function checksize() { if (document.images[0].complete) { var largeur=document.images[0].width+30; var hauteur=document.images[0].height+60; window.resizeTo(largeur, hauteur); window.moveTo((screen.width-largeur)/2, (screen.height-hauteur)/2); window.focus();} else { setTimeout('checksize()',250) } }</"+"script>"); 
		w.document.write("<body onload='checksize()' leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>");
		w.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
		w.document.write("<tr><td colspan='2' valign='middle' align='center'><a href='#' onclick='javascript:window.close()'><img src='"+img+"' border='0' alt='Cliquez pour fermer la fen&ecirc;tre' title='Cliquez pour fermer la fen&ecirc;tre' /></a>"); 
		w.document.write("</td></tr></table>");
		w.document.write("</body></html>"); 
		w.document.close();
		}
	}

function affSavoirPlus()
	{
	if (document.getElementById('savoirplus').style.display == 'none' || document.getElementById('savoirplus').style.display == '')
		document.getElementById('savoirplus').style.display = 'block';
	else
		document.getElementById('savoirplus').style.display = 'none';
	}

function hideDiv(nomDiv)
	{
	if (document.getElementById(nomDiv))
		document.getElementById(nomDiv).style.display = 'none';
	}

function popupNl(){

	var w = 550;
	var h = 300;

	var fen = window.open('/fr/popup_lettreinfo.htm', 'Lettre', 'width='+ w +', height='+ h +',scrollbars=no,top='+((screen.height/2)-(h/2))+',left='+((screen.width/2)-(w/2)));
	fen.focus;
}

