function popup_info(url,largeur,hauteur) {
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;

	window.open(""+url+"","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=1,menubar=0,directories=0,status=0,resizable=1,toolbar=0");
}


function popup_zoom(url,largeur,hauteur) {
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	w=open("","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=0,menubar=0,directories=0,status=0,resizable=1,toolbar=0");
	w.document.write("<html>\n<head>\n<title>CORDAE/La Talvera</title>\n</head>\n");
	w.document.write("<body leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>\n");
	w.document.write("<a href='javascript:window.close();' title='Fermer'><img src='"+url+"' border='0' alt='CORDAE/La Talvera'></a>\n");
	w.document.write("</body>\n</html>");
	w.document.close();
}


function popup_newsletter(url,largeur,hauteur) {
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;

	window.open(""+url+"","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=0,menubar=0,directories=0,status=0,resizable=1,toolbar=1");
}