<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD>     <META NAME="keywords" CONTENT="BERTPAGE - Domaine - G&eacute;n&eacute;alogie des Bellemare.   G&eacute;n&eacute;alogie des Bellemare, G&eacute;n&eacute;alogie des B&eacute;land, Citations, Devinettes, Humour, &Eacute;v&eacute;nements, C&eacute;l&eacute;brations, Trouvailles, Diaporama, Qui suis-je, On s'amuse.">     <META NAME="description" CONTENT="Un site tr&egrave;s int&eacute;ressant. Bertrand Bellemare nous emm&egrave;ne &agrave; travers son univers !  BERTPAGE.CA est un Domaine licenci&eacute; qui traite, entre autres, de g&eacute;n&eacute;alogie de la famille Bellemare, celle des B&eacute;land, d'humour, etc.">     <META NAME="author" CONTENT="Bertrand Bellemare">  <META http-equiv=Content-Type content="text/html; charset=windows-1252">     <META NAME="generator" CONTENT="FreeFormEditor 1.0">  <TITLE>BERTPAGE - Domaine - G&eacute;n&eacute;alogie - Napol&eacute;on Bellemare</TITLE>  <TOBJ class=body id=bbody res="" tstyle="" ttype="" talign=""></HEAD>  <BODY text=#003366 vLink=#ff0000 link=#ff0000 bgColor=#ffffff background=/papier/nw-rainbow.jpg></TOBJ><TOBJ class=pagefont id=tpagefont res="" tstyle="" ttype="" talign=""><BASEFONT face=times></TOBJ>  <BGSOUND balance=0 src="/midi/avemaria.mid" volume=-600 loop=infinite><!-- MENU -->  <CENTER> <TABLE cellSpacing=0 cellPadding=10 width="90%" border=0>   <TBODY>   <TR>     <TD colSpan=2><TOBJ class=header id=header res="" tstyle="" ttype=""       talign=""></TOBJ></TD></TR>   <TR>     <TD colSpan=2></TD></TR>   <TR>     <TD><TOBJ class=html_block id=quad21_tobj res="" tstyle="" ttype=""       talign="">        <DIV id=dot0       style="VISIBILITY: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot1 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot2 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot3 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot4 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot5 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13></DIV>       <DIV id=dot6 style="WIDTH: 13px; POSITION: absolute; HEIGHT: 13px"><IMG       height=13 src="http://www.bertpage.ca/traine/ball.gif" width=13>       <DIV>       <SCRIPT language=JavaScript><!-- // Elastic Trail by Philip Winston at http://members.xoom.com/ebullets/  var nDots = 7; if (document.all&&window.print) document.body.style.cssText="overflow-x:hidden;overflow-y:scroll" var Xpos = 0; var Ypos = 0; var DELTAT = .01; var SEGLEN = 10; var SPRINGK = 10; var MASS = 1; var GRAVITY = 50; var RESISTANCE = 10; var STOPVEL = 0.1; var STOPACC = 0.1; var DOTSIZE = 11; var BOUNCE = 0.75; var isNetscape = navigator.appName=="Netscape"; var followmouse = true; var dots = new Array(); init();  function init(){ var i = 0; for (i = 0; i < nDots; i++) { dots[i] = new dot(i);} if (!isNetscape) {} for (i = 0; i < nDots; i++) { dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y;} if (isNetscape) { startanimate(); } else { setTimeout("startanimate()", 2000);}}  function dot(i) { this.X = Xpos; this.Y = Ypos; this.dx = 0; this.dy = 0; if (isNetscape) { this.obj = eval("document.dot" + i); } else { this.obj = eval("dot" + i + ".style");}}  function startanimate() { setInterval("animate()", 20);} function setInitPositions(dots){ var startloc = document.all.tags("LI"); var i = 0; for (i = 0; i < startloc.length && i < (nDots - 1); i++) { dots[i+1].X = startloc[i].offsetLeft startloc[i].offsetParent.offsetLeft - DOTSIZE; dots[i+1].Y = startloc[i].offsetTop + startloc[i].offsetParent.offsetTop + 2*DOTSIZE;} dots[0].X = dots[1].X; dots[0].Y = dots[1].Y - SEGLEN;}  function MoveHandler(e){ Xpos = e.pageX; Ypos = e.pageY; return true;}  function MoveHandlerIE() { Xpos = window.event.x + document.body.scrollLeft; Ypos = window.event.y + document.body.scrollTop;} if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = MoveHandler;} else { document.onmousemove = MoveHandlerIE;} function vec(X, Y){ this.X = X; this.Y = Y;}  function springForce(i, j, spring){ var dx = (dots[i].X - dots[j].X); var dy = (dots[i].Y - dots[j].Y); var len = Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF = SPRINGK * (len - SEGLEN); spring.X += (dx / len) * springF; spring.Y += (dy / len) * springF;}}  function animate() { var start = 0; if (followmouse) { dots[0].X = Xpos; dots[0].Y = Ypos; start = 1;} for (i = start ; i < nDots; i++ ) { var spring = new vec(0, 0); if (i > 0) { springForce(i-1, i, spring);} if (i < (nDots - 1)) { springForce(i+1, i, spring);} var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE); var accel = new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY); dots[i].dx += (DELTAT * accel.X); dots[i].dy += (DELTAT * accel.Y); if (Math.abs(dots[i].dx) < STOPVEL && Math.abs(dots[i].dy) < STOPVEL && Math.abs(accel.X) < STOPACC && Math.abs(accel.Y) < STOPACC) { dots[i].dx = 0; dots[i].dy = 0;} dots[i].X += dots[i].dx; dots[i].Y += dots[i].dy; var height, width; if (isNetscape) { height = window.innerHeight + document.scrollTop; width = window.innerWidth + document.scrollLeft; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft;} if (dots[i].Y >= height - DOTSIZE - 1) { if (dots[i].dy > 0) { dots[i].dy = BOUNCE * -dots[i].dy;} dots[i].Y = height - DOTSIZE - 1;} if (dots[i].X >= width - DOTSIZE) { if (dots[i].dx > 0) { dots[i].dx = BOUNCE * -dots[i].dx;} dots[i].X = width - DOTSIZE - 1;} if (dots[i].X < 0) { if (dots[i].dx < 0) { dots[i].dx = BOUNCE * -dots[i].dx;} dots[i].X = 0;} dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y;}} // --></SCRIPT>        <DIV>&nbsp;</DIV>  </TOBJ> </TD>  <!-- DEBUT DU CODE --><!-- Par http://www.webmasters-fr.net -->     <STYLE type=text/css> BODY { scrollbar-face-color: #C4172C; scrollbar-shadow-color: #DB737F; scrollbar-highlight-color: #F7DEE1; scrollbar-3dlight-color: #770310; scrollbar-darkshadow-color: #AA0418; scrollbar-track-color: #D9B2A9; scrollbar-arrow-color: #F7DEE1; } </STYLE> <!-- FIN DU CODE -->      <DIV>&nbsp;</DIV>     <DIV align=center><IMG alt="" hspace=0 src="/Graphiques-03/nouveau.gif"     align=baseline border=0></DIV>      <DIV>&nbsp;</DIV>     <DIV><FONT color=#800080 size=5><STRONG><U>FAMILLE NAPOL&Eacute;ON     BELLEMARE</U>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </STRONG></FONT></DIV>      <DIV>&nbsp;</DIV>  <TOBJ class=linked_image id=quad11_tobj res="" tstyle=""     ttype="" talign="">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;     &nbsp;&nbsp;&nbsp;<IMG height=375 alt="Napol&eacute;on Bellemare et Jeanne B&eacute;land."     src="/Graphiques-03/napoleon-jeanne5.jpg" width=250 align=center border=2>     </TOBJ>      <META content="MSHTML 5.50.4916.2300" name=GENERATOR>  <!-- DEBUT DU SCRIPT -->     <SCRIPT language=JavaScript> /* SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT Par Bertrand pour BERTPAGE.CA (http://www.bertpage.ca/) */ MaDate = new Date; heure = MaDate.getHours(); function MessageParDate() 	{ 	if (heure>=0 && heure<=5) 		{ 		MessageB = 'Bonne nuit de Bertrand !'; 		} 	if (heure>5 && heure<12) 		{ 		MessageB = 'Bon avant-midi de Bertrand !'; 		} 	if (heure>=12 && heure<13) 		{ 		MessageB = 'Bon apr&egrave;s-midi de Bertrand !'; 		} 	if (heure>=13 && heure<=17) 		{ 		MessageB = 'Bonne fin d\'apr&egrave;s-midi de Bertrand !'; 		} 	if (heure>17 && heure<=19) 		{ 		MessageB = 'Bonne soir&eacute;e de Bertrand !'; 		} 	if (heure>19 && heure<=23) 		{ 		MessageB = 'Bonne fin de soir&eacute;e de Bertrand !'; 		} 	return MessageB; 	} </SCRIPT> <!-- FIN DU SCRIPT -->      <DIV>&nbsp;</DIV>      <DIV><FONT color=#ff00ff size=4><STRONG><!-- DEBUT DU SCRIPT --><!-- SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT Par Bertrand pour BERTPAGE.CA (http://www.bertpage.ca/) -->     <SCRIPT language=JavaScript> document.write(MessageParDate()); </SCRIPT> <!-- FIN DU SCRIPT -->      <DIV>&nbsp;</DIV>     <DIV><FONT color=#0000ff size=4><STRONG>AVIS : CETTE PAGE FAIT MAINTENANT     PARTIE DE LA SECTION "PUBLIQUE" DU DOMAINE BERTPAGE.CA</STRONG></FONT></DIV>     <DIV>&nbsp;</DIV>     <DIV><FONT color=#0000ff size=4><STRONG>Veuillez vous r&eacute;f&eacute;rer &agrave; la page     intitul&eacute;e :</DIV>     <DIV><A href="http://www.bertpage.ca/index-45.html">LA LOI SUR L'ACC&Egrave;S &Agrave;     L'INFORMATION ET LA DISCR&Eacute;TION G&Eacute;N&Eacute;ALOGIQUE&nbsp;</A>&nbsp; pour conna&icirc;tre     les modalit&eacute;s d'application concernant les motifs de ce     changement.</STRONG></FONT></DIV>_________________________________________________________</FONT></STRONG>    <DIV>&nbsp;</DIV> <DIV>&nbsp;</DIV>  <DIV><STRONG><FONT color=#0000ff size=4>MON P&Egrave;RE :</FONT></STRONG></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#0000ff><IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;NAPOL&Eacute;ON&nbsp;<IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;</FONT><BR>N&eacute; le 19 juin 1899, Paroisse St-Antoine de Padoue, Louiseville.<BR>Fils d'Ovide Bellemare et d'Augusta Lefebvre.<BR>Profession : Fermier et Ing&eacute;nieur stationnaire.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute; le 15 novembre 1926, &agrave; Marie JEANNE B&eacute;land<BR>de Ste-Ursule, Qu&eacute;bec, n&eacute;e le 03 septembre 1906, baptis&eacute;e<BR>&agrave; Ste-Ursule, fille de Arthur ("Guts") B&eacute;land et de D&eacute;lia<BR>Laterreur. Jeanne est d&eacute;c&eacute;d&eacute;e le 14 septembre 1990, &agrave; Montr&eacute;al.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Napol&eacute;on est d&eacute;c&eacute;d&eacute; le 26 f&eacute;vrier 1974 &agrave; Montr&eacute;al. Les fun&eacute;railles<BR>ont eu lieu le 2 mars 1974.</FONT></DIV> <DIV>&nbsp;</DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <IMG style="WIDTH: 251px; HEIGHT: 251px" alt="NAPOLEON  ET  JEANNE  1952" hspace=0 src="/diap01/12.gif" align=baseline border=0> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>HUIT ENFANTS SONT N&Eacute;S DE LEUR UNION :</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#0000ff size=4>Jean-Jacques, R&eacute;jean, Jacqueline, Paul-Yvon, Bertrand, Berthe, <BR>Lise et Jean-Marc.</FONT></DIV> <DIV><FONT color=#0000ff size=4>________________________________________________________</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><STRONG>&nbsp;<A href="http://www.bertpage.ca/Graphiques-03/maison-natale-1938.jpg"> VOIR&nbsp; UNE&nbsp; PHOTO&nbsp; DE&nbsp; LA&nbsp; MAISON&nbsp; NATALE&nbsp;</A></STRONG></FONT></DIV> <DIV><FONT color=#000080 size=4>_________________________________________________________<BR></FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=5><FONT color=#ff0000><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AVIS IMPORTANT</DIV></STRONG> </FONT>&nbsp;<DIV><FONT color=#000080 size=5>AFIN DE PROT&Eacute;GER LA VIE PRIV&Eacute;E</FONT></DIV> <DIV><FONT color=#000080 size=4>DES PERSONNES VIVANTES CONCERN&Eacute;ES, NOUS NE</FONT></DIV> <DIV><FONT color=#000080 size=4>DONNERONS PAS L'ANN&Eacute;E DE LA NAISSANCE, DU MARIAGE</FONT></DIV> <DIV><FONT color=#000080 size=4>ETC.&nbsp;&nbsp;(Nous donnerons les dates comme "14 f&eacute;vrier 19--" par exemple).</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Toute personne d&eacute;sireuse d'obtenir des pr&eacute;cisions peut communiquer</FONT></DIV> <DIV><FONT color=#000080 size=4>avec BERTPAGE.CA &agrave; l'adresse de courriel :&nbsp; <A href="mailto:info@bertpage.ca">info@bertpage.ca</A> </FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#800000 size=4>BERTPAGE.CA se veut vigilant</FONT><FONT color=#000080 size=4> et d&eacute;sire prot&eacute;ger les personnes</FONT></DIV> <DIV><FONT color=#000080 size=4>concern&eacute;es contre les arnaqueurs et les personnes malveillantes qui</FONT></DIV> <DIV><FONT color=#000080 size=4>pourraient utiliser certains renseignements pour se faire de fausses</FONT></DIV> <DIV><FONT color=#000080 size=4>identit&eacute;s ou pour obtenir du cr&eacute;dit sous de fausses repr&eacute;sentations.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>______________________________________________________</FONT></DIV> <DIV><FONT color=#000080 size=4><BR>-1-<BR><FONT color=#0000ff><IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;JEAN-JACQUES</FONT></FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Joseph Ovide JEAN-JACQUES, n&eacute; le 17 mars 19--, baptis&eacute; &agrave; <BR>St-Antoine de Padoue, Louiseville.<BR>Profession : Presseur, machiniste et camionneur.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute; &agrave; : Marie Jeannine MADELEINE Masson, fille d'Isidore<BR>Masson d'Arz&eacute;lie Lupien, n&eacute;e le 19 octobre 19--, baptis&eacute;e &agrave;<BR>l'&eacute;glise St-Joseph de Maskinong&eacute;. Mariage c&eacute;l&eacute;br&eacute; en l'&eacute;glise <BR>St-Stanislas de Kostka, Montr&eacute;al, le 18 ao&ucirc;t 19--.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Divorce obtenu le 11 mars 1976.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Remari&eacute; au Palais de Justice de Montr&eacute;al, le 22 d&eacute;cembre 19--, <BR>&agrave; Marie Gertrude Lina Blake, n&eacute;e le 14 novembre 1931, baptis&eacute;e <BR>&agrave; la paroisse St-Laurent, &agrave; Ville St-Laurent, fille de Albert <BR>Walter Blake et de Rose-Aim&eacute;e Morin. Lina est d&eacute;c&eacute;d&eacute;e<BR>le 2 septembre 1996.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>De l'union de Jean-Jacques &agrave; Madeleine Masson, est n&eacute; un<BR>enfant : <FONT color=#800000>Joseph Napol&eacute;on LUC</FONT>, n&eacute; le 27 ao&ucirc;t 19--, baptis&eacute; &agrave;<BR>St-Pierre Claver, Montr&eacute;al.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Sa conjointe : Marie Carmen DANIELLE Arcand, n&eacute;e le 25 juin <BR>19-- &agrave; Trois-Rivi&egrave;res, baptis&eacute;e &agrave; la paroisse St-Sacrement, </FONT></DIV> <DIV><FONT color=#000080 size=4>fille d'Andr&eacute; Arcand et d'H&eacute;l&egrave;ne Fleury.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Deux enfants sont n&eacute;s de leur union :<BR><FONT color=#ff00ff>CLAUDIE</FONT> Arcand Bellemare, n&eacute;e le 9 octobre 19--<BR>(aux registres de la ville de Trois-Rivi&egrave;res).</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#ff00ff>MICHA&Euml;L</FONT> Arcand Bellemare, n&eacute; le 4 avril 19--. Registres civils <BR>de Joliette.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>_________________________________________________________</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>&nbsp;-2-<BR><FONT color=#0000ff><IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;R&Eacute;JEAN</FONT></FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Joseph G&eacute;d&eacute;on R&Eacute;JEAN, n&eacute; le 28 mars 1931, baptis&eacute; &agrave; l'&eacute;glise<BR>St-Antoine de Padoue, Louiseville. </FONT></DIV> <DIV><FONT color=#000080 size=4>P/M : G&eacute;d&eacute;on Bellemare et L&eacute;onie Bourdages. </FONT></DIV> <DIV><FONT color=#000080 size=4>D&eacute;c&eacute;d&eacute; le 21 mai 1966 (noyade).<BR>Profession : Soudeur et entrepreneur en construction.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute; &agrave; Marie Jeanne ROLANDE Doucet, fille de Armand Doucet <BR>et de Aurore St-Pierre, n&eacute;e le 3 janvier 19--, baptis&eacute;e dans <BR>la paroisse St-&Eacute;douard de Montr&eacute;al. Mariage c&eacute;l&eacute;br&eacute; &agrave;<BR>l'&eacute;glise St-Vital de Montr&eacute;al-Nord le 8 ao&ucirc;t 19--.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Trois enfants sont n&eacute;s de leur union : <FONT color=#800000>Denis, Ren&eacute; et France</FONT>.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#800000>(1) DENIS</FONT> (fils de R&eacute;jean) :<BR>Joseph Albert Napol&eacute;on DENIS, n&eacute; le 20 mai 19--, baptis&eacute; le 29<BR>mai 19-- &agrave; l'&eacute;glise St-Vital (par Albert Bellemare).<BR>Profession : Microbiologiste (V.P. qualit&eacute;).</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute; &agrave; : Marie H&eacute;l&egrave;ne Augustine DENISE Croteau, fille<BR>d'&Eacute;douard Croteau et &Eacute;veline Bertrand, n&eacute;e le 24 f&eacute;vrier 19--,<BR>baptis&eacute;e le 26 f&eacute;vrier 19-- dans la paroisse St-&Eacute;douard de<BR>Montr&eacute;al. Profession : Technologiste m&eacute;dicale. <BR>Le mariage a eu lieu au Palais de Justice de Montr&eacute;al, le 29 <BR>d&eacute;cembre 19--.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Enfants de Denis et de Denise :<BR>1) <FONT color=#ff00ff>Julie</FONT> : Marie Adrienne Denise JULIE, n&eacute;e le 27 novembre 19--,<BR>baptis&eacute;e le 22 janvier 19-- &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.<BR>2) <FONT color=#ff00ff>Annie</FONT> : &Eacute;veline Rolande Jeanne ANNIE, n&eacute;e le 8 novembre<BR>19-- &agrave; l'h&ocirc;pital du Sacr&eacute;-Coeur de Montr&eacute;al, baptis&eacute;e &agrave; la<BR>paroisse St-Vital de Montr&eacute;al-Nord (le 15 d&eacute;cembre 19--).</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#800000>(2) REN&Eacute;</FONT> (fils de R&eacute;jean).<BR>Joseph Armand REN&Eacute;, n&eacute; le 26 f&eacute;vrier 19--, baptis&eacute; le 3 mars<BR>19-- &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.<BR>Profession : Technicien en application thermique et<BR>m&eacute;chanicien du b&acirc;timent.<BR>Mari&eacute; &agrave; : Marie V&eacute;ronique JOANNE Lapointe, fille de Paul-&Eacute;mile<BR>Lapointe et de Jeanne D'Arc Benoit, n&eacute;e le 25 septembre 19--<BR>et baptis&eacute;e le 29 septembre 19--, dans la paroisse St-&Eacute;douard de<BR>Montr&eacute;al. Date du mariage : le 14 novembre 19-- &agrave; l'&eacute;glise St-Vital </FONT></DIV> <DIV><FONT color=#000080 size=4>de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Ren&eacute; et Joanne &eacute;l&egrave;vent trois enfants : Michel, fils de Ren&eacute;,<BR>Genevi&egrave;ve, fille de Joanne. Genevi&egrave;ve a &eacute;t&eacute; adopt&eacute;e l&eacute;galement<BR>par Ren&eacute;. Simon est n&eacute; de leur union.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#ff00ff>MICHEL</FONT> : (Fils de Ren&eacute;) : R&eacute;jean Denis Ren&eacute; MICHEL Bellemare, </FONT></DIV> <DIV><FONT color=#000080 size=4>n&eacute; le 3 f&eacute;vrier 19--, baptis&eacute; le samedi de P&acirc;ques<BR>19-- &agrave; l'&eacute;glise Ste-Colette de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#ff00ff>GENEVI&Egrave;VE</FONT> ; (Fille de Joanne, &eacute;pouse de Ren&eacute;) : Anne-Marie<BR>GENEVI&Egrave;VE Lapointe, n&eacute;e le 2 octobre 19--, baptis&eacute;e le 12 <BR>novembre 19-- &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#ff00ff>SIMON</FONT> : (Fils de Ren&eacute; et Joanne). Joseph Ren&eacute; Gilles SIMON<BR>Bellemare, n&eacute; le 21 octobre 19--, baptis&eacute; le 22 janvier 19--<BR>&agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#800000>(3) FRANCE</FONT> : (Fille de R&eacute;jean).<BR>Marie Pauline FRANCE, n&eacute;e le 7 d&eacute;cembre 19--, baptis&eacute;e le 23<BR>d&eacute;cembre 19-- &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.<BR>Profession : R&eacute;partitrice en s&eacute;curit&eacute;.<BR>_________________________________________________________</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>-3-<BR><FONT color=#0000ff><IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;JACQUELINE</FONT></FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Marie Ida JACQUELINE : N&eacute;e le 11 ao&ucirc;t 19--, baptis&eacute;e<BR>&agrave; St-Antoine de Padoue de Louiseville.<BR>P/M : Ida et Rom&eacute;o B&eacute;land.<BR>Mari&eacute;e &agrave; : Joseph Jean-Baptiste RAYMOND Roy (B&eacute;langer),<BR>fils de Joseph J&eacute;r&eacute;mie B&eacute;langer et de Bernadette Roy,<BR>n&eacute; le 20 ao&ucirc;t 19-- et baptis&eacute; &agrave; St-Joseph de St-Henri, Montr&eacute;al.<BR>Profession de Raymond : Pr&eacute;pos&eacute; en produits pharmaceutiques.<BR>Mariage c&eacute;l&eacute;br&eacute; &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord<BR>le 10 ao&ucirc;t 19--. Raymond a s'est servi de son nom usuel<BR>"B&eacute;langer" jusqu'en 1980. Ensuite, pour se conformer<BR>&agrave; son acte de bapt&ecirc;me, il utilise le nom de Raymond "Roy".</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Trois enfants sont n&eacute;s de leur union :<BR>Carole B&eacute;langer<BR>Joanne B&eacute;langer et<BR>Danielle B&eacute;langer.<BR><FONT color=#800000>1) CAROLE</FONT> : (Fille de Jacqueline et Raymond) :<BR>Marie Th&eacute;r&egrave;se CAROLE, n&eacute;e le 11 juillet 19--, baptis&eacute;e &agrave; l'&eacute;glise<BR>Ste-Foy de Ville St-Laurent. Profession : Orthop&eacute;dagogue.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute;e &agrave; Joseph Albert GILLES Gougoux, n&eacute; le 15 d&eacute;cembre<BR>19--, baptis&eacute; &agrave; l'&eacute;glise Immacul&eacute;e Conception de Montr&eacute;al. </FONT></DIV> <DIV><FONT color=#000080 size=4>(Profession : Enseignant).<BR>Mariage le 4 juillet 19-- au Palais de Justice de Laval.  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Enfant de Carole et Gilles : Une fille : <BR><FONT color=#ff00ff>MYL&Egrave;NE</FONT> Andr&eacute;e B&eacute;langer Gougoux, n&eacute;e le 13 novembre 19--,<BR>baptis&eacute;e &agrave; l'&eacute;glise Bon Pasteur de Ville de Laval, le 11 avril 19--. </FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#800000>2) JOANNE</FONT> : (Fille de Jacqueline et Raymond) :<BR>Marie Jeanne Jacqueline JOANNE, n&eacute;e le 14 mars 19--, </FONT></DIV> <DIV><FONT color=#000080 size=4>baptis&eacute;e &agrave; l'&eacute;glise St-Enfant-J&eacute;sus du Mile-End, Montr&eacute;al.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute;e &agrave; : Joseph Arthur Gilles DENIS Mercier, n&eacute; le 15 janvier<BR>19--, baptis&eacute; &agrave; Ste-Catherine d'Alexandrie. Mariage le 29<BR>septembre 19-- &agrave; l'&eacute;glise St-No&euml;l-Chabanel de Ville de Laval.<BR>Rupture maritale vers 1991.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Deux enfants sont n&eacute;s de leur union :<BR><FONT color=#ff00ff>MARIE-&Egrave;VE</FONT> B&eacute;langer Mercier, n&eacute;e le 7 septembre 19--,<BR>baptis&eacute;e &agrave; l'&eacute;glise Ste-Gertrude de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Gilles Simon <FONT color=#ff00ff>MAXIME</FONT> B&eacute;langer Mercier, n&eacute; le 25 d&eacute;cembre 19--,<BR>baptis&eacute; en l'&eacute;glise St-Sauveur, &agrave; St-Sauveur, Qu&eacute;bec.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#800000>3) DANIELLE</FONT> : (Fille de Raymond et Jacqueline),<BR>Marie Bernadette DANIELLE, n&eacute;e et baptis&eacute;e le 1er mars 19-- &agrave; <BR>l'h&ocirc;pital. Archives de l'&Eacute;tat Civil &agrave; l'&eacute;glise St-Vital de<BR>Montr&eacute;al-Nord.<BR>Note : Suite &agrave; un accouchement difficile, Danielle souffre<BR>d'une paralysie c&eacute;l&eacute;brale.</FONT></DIV> <DIV><FONT color=#000080 size=4>_________________________________________________________</FONT></DIV> <BR> <DIV><FONT color=#000080 size=4>-4-<BR><FONT color=#0000ff><IMG alt="" hspace=0 src="/traine/ball.gif" align=baseline border=0>&nbsp;PAUL-YVON</FONT></FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Joseph Napol&eacute;on PAUL-YVON, n&eacute; le 20 f&eacute;vrier 19--, baptis&eacute; &agrave; <BR>St-Antoine de Padoue, &agrave; Louiseville.<BR>P/M : Joseph Coutu et Jeannette B&eacute;land. Profession :<BR>Commer&ccedil;ant, Boucherie Chevaline.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Mari&eacute; &agrave; Marie Madeleine MONIQUE Tr&eacute;panier, fille d'Archildas<BR>Tr&eacute;panier et d'&Eacute;milienne Payette, n&eacute;e le 24 octobre 19-- et<BR>baptis&eacute;e &agrave; Ste-Madeleine, Rigaud.<BR>Mariage le 12 juillet 19-- &agrave; l'&eacute;glise St-Vital de Montr&eacute;al-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Un fils est n&eacute; de leur union : <BR>Joseph Jean-Jacques <FONT color=#800000>YVES</FONT>, n&eacute; le 29 f&eacute;vrier 19--, baptis&eacute; &agrave; l'&eacute;glise<BR>St-Vital de Montr&eacute;al-Nord.<BR>Profession : Contr&ocirc;leur de la circulation a&eacute;rienne et commer&ccedil;ant. <BR>Yves est mari&eacute; &agrave; : Marie Fabienne MARL&Egrave;NE Lavoie, (Infirmi&egrave;re)<BR>fille de Fernand Lavoie et de Jeanne D'Arc Fortin,<BR>n&eacute;e le 26 octobre 19-- &agrave; St-Alphonse de Bagotville (devenu<BR>LaBaie). Date du mariage : le 19 juin 19--, &agrave; St-Alphonse, LaBaie.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>De l'union de Yves et Marl&egrave;ne sont n&eacute;s une fille et un fils.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4>Marie H&eacute;l&egrave;ne <FONT color=#ff00ff>CLAUDE</FONT> Bellemare, n&eacute;e le 30 d&eacute;cembre 19--,<BR>baptis&eacute;e &agrave; la paroisse St-Luc, Chicoutimi-Nord.</FONT></DIV>  <DIV>&nbsp;</DIV> <DIV><FONT color=#000080 size=4><FONT color=#ff00ff>DOMINIC</FONT> : Joseph Paul-Yvon DOMINIC, <BR>n&eacute; le 6 septembre 19--, baptis&eacute; le 4 octobre 19-- <BR>&agrave; la paroisse St-Ambroise de Loretteville. </FONT></DIV></FONT></DIV>   <BR>_________________________________________________________     </FONT></DIV>      <DIV>&nbsp;</DIV>     <DIV><FONT color=#ff0000 size=4><STRONG><FONT     color=#ff0000>ATTENTION :</FONT><FONT color=#800000 size=4> AFIN D'ALL&Eacute;GER LE T&Eacute;L&Eacute;CHARGEMENT DE LA     PR&Eacute;SENTE</FONT></DIV>     <DIV><FONT color=#800000 size=4>PAGE, DEVENUE     TROP LOURDE, LES QUATRE AUTRES ENFANTS DE</FONT></STRONG></FONT></DIV>     <DIV><FONT color=#800000 size=4><STRONG><FONT color=#800000>NAPOL&Eacute;ON ET     JEANNE SONT AFFICH&Eacute;S DANS LA PAGE SUIVANTE.</FONT></STRONG></FONT></DIV>     <DIV>&nbsp;</DIV>      <DIV><FONT color=#800000 size=4><STRONG><FONT color=#800000>CLIQUEZ SUR     :&nbsp;&nbsp;<A href="http://www.bertpage.ca/index-52.html"> PAGE     SUIVANTE&nbsp;</A>&nbsp; POUR Y ALLER, MERCI !</FONT></STRONG></FONT></DIV>      <DIV>&nbsp;</DIV>     <DIV><FONT color=#800000 size=4><STRONG><FONT     color=#800000>__________________________________________________________</FONT></STRONG></DIV>  <DIV>&nbsp;</DIV> <DIV align=center><STRONG><FONT color=#ff0000 size=4>LOI SUR LA PROTECTION DES RENSEIGNEMENTS</FONT></STRONG></DIV> <DIV align=center><STRONG><FONT color=#ff0000 size=4>PERSONNELS, </FONT></STRONG><STRONG><FONT color=#ff0000 size=4>DANS LE SECTEUR PRIV&Eacute;</FONT></STRONG></DIV>  <DIV>&nbsp;</DIV>  <DIV><FONT color=#0000ff size=4>Nous respecterons&nbsp;la volont&eacute; de tout individu, en faisant la demande &eacute;crite et&nbsp;en justifiant cette derni&egrave;re, de retirer les renseignements personnels le concernant. </FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT color=#0000ff size=4><FONT color=#000080>Vous pouvez faire une telle demande en m'&eacute;crivant,</FONT></DIV> <DIV><FONT color=#0000ff size=4><STRONG><EM><FONT size=4>Cliquez sur :</FONT></EM></STRONG>&nbsp;&nbsp;<A href="mailto:bertrand@bertpage.ca"><IMG alt="Cliquez  I C I  pour m'&eacute;crire  SVP  !" hspace=0 src="http://www.bertpage.ca/Courriel/bertrand-left.gif" align=baseline border=0></A></FONT></DIV> <DIV><FONT color=#0000ff size=4>__________________________________________________________</FONT></DIV></DIV> <DIV>&nbsp;</DIV> <DIV>&nbsp;</DIV> <DIV> <META content="MSHTML 6.00.2600.0" name=GENERATOR></DIV> <DIV align=center> <DIV><STRONG>Selon ce. . .</STRONG> <A href="http://www.digits.com/"><IMG height=23 hspace=2 src="/wc-03.gif" width=216 vspace=2 border=1></A> <STRONG>Vous &ecirc;tes le :</STRONG> <IMG height=20 hspace=4 src="http://counter.digits.com/wc/-d/4/bertpage-03" width=60 align=middle vspace=2 border=0> <STRONG>i&egrave;me </STRONG></DIV> <DIV><STRONG>visiteur de la chronique <FONT color=#800000>"G&Eacute;N&Eacute;ALOGIE - NAPOL&Eacute;ON BELLEMARE". </FONT></STRONG></DIV> <DIV><STRONG>MERCI pour votre int&eacute;r&ecirc;t !</STRONG></DIV> <DIV><BR></DIV><TD><TOBJ class=linked_image id=quad32_tobj talign="" ttype="" tstyle="" res=""></TOBJ></TD></TR><TLIST class=listwithtext id=quad41_tobj talign="" ttype="" tstyle="" res="" layout="table"> <DIV align=center>&nbsp; <A href="http://www.bertpage.ca/index-51.html"><IMG height=199 alt="Famille de Napol&eacute;on et Jeanne 1942. Cliquez ICI pour UN RETOUR AU HAUT DE LA PAGE." src="http://www.bertpage.ca/Graphiques-02/famille-1942.jpg" width=302 align=center border=3></A></DIV> <DIV>&nbsp;</DIV> <DIV><STRONG><FONT color=#000080>Sans &eacute;gard s'ils sont &agrave; l'avant ou &agrave; l'arri&egrave;re, de gauche &agrave; droite : Berthe, Jacqueline, Napol&eacute;on, R&eacute;jean, Lise, Jean-Jacques, Jeanne, Jean-Marc, Paul-Yvon et le plus beau, (Hum !) Bertrand.</FONT></STRONG></DIV> <DIV>&nbsp;</DIV>  <DIV align=center> CLIQUEZ CI-BAS POUR :</DIV> <DIV align=left>&nbsp;</DIV> <DIV align=left>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A href="http://www.bertpage.ca/index-52.html"><FONT color=#ff0000>LES QUATRE AUTRES ENFANTS :</FONT></A>&nbsp;&nbsp;&nbsp;<FONT color=#000080> De Napol&eacute;on et Jeanne.</FONT></DIV> <DIV align=left> <TABLE cellSpacing=3 cellPadding=2 border=0>   <TBODY>   <TR>     <TD vAlign=top align=left><TELEMENT class=le id=0 res="" tstyle=""       ttype="" talign=""><A href="http://www.bertpage.ca/index-19.html"><FONT       face=times size=4>       <DIV><FONT color=#ff0000>LA G&Eacute;N&Eacute;ALOGIE des BELLEMARE       :</FONT></FONT></A></TELEMENT> </DIV></TD>     <TD vAlign=top align=left><TELEMENT class=paratext id=0 res="" tstyle=""       ttype="" talign=""><FONT color=#000080><FONT face=times       size=4>Introduction &agrave; la section "BELLEMARE".</FONT></TELEMENT>   </FONT></TD></TR>   <TR>     <TD vAlign=top align=left><TELEMENT class=le id=1 res="" tstyle=""       ttype="" talign=""><A href="http://www.bertpage.ca/index-61.html"><FONT       face=times color=#ff0000 size=4>LA G&Eacute;N&Eacute;ALOGIE des B&Eacute;LAND       :</FONT></A></TELEMENT><FONT color=#ff0000> </FONT></TD>     <TD vAlign=top align=left><TELEMENT class=paratext id=1 res="" tstyle=""       ttype="" talign=""><FONT color=#000080><FONT face=times       size=4>Pr&eacute;sentation de la section "B&Eacute;LAND".</FONT></TELEMENT> </FONT></TD></TR>   <TR>     <TD vAlign=top align=left><TELEMENT class=le id=2 res="" tstyle=""       ttype="" talign=""><A href="mailto:bertrand@bertpage.ca"><FONT face=times       color=#ff0000 size=4>ENVOYER UN COURRIEL :</FONT></A></TELEMENT> </TD>     <TD vAlign=top align=left><TELEMENT class=paratext id=2 res="" tstyle=""       ttype="" talign=""><FONT color=#000080><FONT face=times size=4>&Agrave;       Bertrand.</FONT></TELEMENT> </FONT></TD></TR>   <TR>     <TD vAlign=top align=left><TELEMENT class=le id=3 res="" tstyle=""       ttype="" talign=""><A href="http://www.bertpage.ca/"><FONT face=times       color=#ff0000 size=4>UN RETOUR &Agrave; L'ACCEUIL :</FONT></A></TELEMENT> </TD>     <TD vAlign=top align=left><TELEMENT class=paratext id=3 res="" tstyle=""       ttype="" talign=""><FONT face=times color=#000080 size=4>Bienvenue au       Domaine BERTPAGE.CA !</FONT></TELEMENT> </TD></TR></TBODY></TABLE></DIV></TLIST></B>  </TOBJ></TD></TR><TR><TD align="center" colspan="2"><TOBJ class=footer id=footer res="" tstyle="" ttype="" talign=""></TOBJ></TD></TR></TABLE>  </body>  </html>  
