govkit-ca 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/LICENSE +1 -1
  2. data/README.md +2 -2
  3. data/Rakefile +1 -1
  4. data/govkit-ca.gemspec +8 -8
  5. data/lib/gov_kit-ca/postal_code/strategy/base.rb +33 -1
  6. data/lib/gov_kit-ca/postal_code/strategy/{cbc-ca.rb → cbc_ca.rb} +6 -13
  7. data/lib/gov_kit-ca/postal_code/strategy/{conservative-ca.rb → conservative_ca.rb} +2 -4
  8. data/lib/gov_kit-ca/postal_code/strategy/digital-copyright_ca.rb +27 -0
  9. data/lib/gov_kit-ca/postal_code/strategy/{elections-ca.rb → elections_ca.rb} +2 -4
  10. data/lib/gov_kit-ca/postal_code/strategy/{greenparty-ca.rb → greenparty_ca.rb} +3 -5
  11. data/lib/gov_kit-ca/postal_code/strategy/{liberal-ca.rb → liberal_ca.rb} +3 -5
  12. data/lib/gov_kit-ca/postal_code/strategy/{ndp-ca.rb → ndp_ca.rb} +3 -5
  13. data/lib/gov_kit-ca/postal_code/strategy/{parl-gc-ca.rb → parl_gc_ca.rb} +3 -5
  14. data/lib/gov_kit-ca/postal_code/{strategy.rb → strategy_set.rb} +1 -7
  15. data/lib/gov_kit-ca/postal_code.rb +9 -3
  16. data/lib/gov_kit-ca/version.rb +1 -1
  17. data/lib/gov_kit-ca.rb +2 -1
  18. data/spec/cbc_ca_spec.rb +13 -6
  19. data/spec/digital-copyright_ca_spec.rb +32 -0
  20. data/spec/elections_ca_spec.rb +7 -0
  21. data/spec/fixtures/cbc_ca/A1A1A1.response +11 -0
  22. data/spec/fixtures/cbc_ca/G0C2Y0.response +11 -0
  23. data/spec/fixtures/cbc_ca/H0H0H0.response +309 -0
  24. data/spec/fixtures/cbc_ca/K0A1K0.response +11 -0
  25. data/spec/fixtures/cbc_ca/T5S2B9.response +11 -0
  26. data/spec/fixtures/cbc_ca/X1B1B1.response +309 -0
  27. data/spec/fixtures/conservative_ca/A1A1A1.response +467 -0
  28. data/spec/fixtures/conservative_ca/G0C2Y0.response +467 -0
  29. data/spec/fixtures/conservative_ca/H0H0H0.response +467 -0
  30. data/spec/fixtures/conservative_ca/K0A1K0.response +467 -0
  31. data/spec/fixtures/conservative_ca/T5S2B9.response +467 -0
  32. data/spec/fixtures/conservative_ca/X1B1B1.response +467 -0
  33. data/spec/fixtures/digital-copyright_ca/A1A1A1.response +262 -0
  34. data/spec/fixtures/digital-copyright_ca/G0C2Y0.response +263 -0
  35. data/spec/fixtures/digital-copyright_ca/H0H0H0.response +278 -0
  36. data/spec/fixtures/digital-copyright_ca/K0A1K0.response +264 -0
  37. data/spec/fixtures/digital-copyright_ca/T5S2B9.response +267 -0
  38. data/spec/fixtures/digital-copyright_ca/X1B1B1.response +278 -0
  39. data/spec/fixtures/elections_ca/A1A1A1.response +12 -0
  40. data/spec/fixtures/elections_ca/G0C2Y0.response +12 -0
  41. data/spec/fixtures/elections_ca/H0H0H0.response +11 -0
  42. data/spec/fixtures/elections_ca/K0A1K0.response +11 -0
  43. data/spec/fixtures/elections_ca/T5S2B9.response +12 -0
  44. data/spec/fixtures/elections_ca/X1B1B1.response +11 -0
  45. data/spec/fixtures/greenparty_ca/A1A1A1.response +13 -0
  46. data/spec/fixtures/greenparty_ca/G0C2Y0.response +13 -0
  47. data/spec/fixtures/greenparty_ca/H0H0H0.response +13 -0
  48. data/spec/fixtures/greenparty_ca/K0A1K0.response +13 -0
  49. data/spec/fixtures/greenparty_ca/T5S2B9.response +13 -0
  50. data/spec/fixtures/greenparty_ca/X1B1B1.response +13 -0
  51. data/spec/fixtures/liberal_ca/A1A1A1.response +582 -0
  52. data/spec/fixtures/liberal_ca/G0C2Y0.response +582 -0
  53. data/spec/fixtures/liberal_ca/H0H0H0.response +663 -0
  54. data/spec/fixtures/liberal_ca/K0A1K0.response +663 -0
  55. data/spec/fixtures/liberal_ca/T5S2B9.response +663 -0
  56. data/spec/fixtures/liberal_ca/X1B1B1.response +663 -0
  57. data/spec/fixtures/ndp_ca/A1A1A1.response +12 -0
  58. data/spec/fixtures/ndp_ca/G0C2Y0.response +12 -0
  59. data/spec/fixtures/ndp_ca/H0H0H0.response +12 -0
  60. data/spec/fixtures/ndp_ca/K0A1K0.response +12 -0
  61. data/spec/fixtures/ndp_ca/T5S2B9.response +12 -0
  62. data/spec/fixtures/ndp_ca/X1B1B1.response +12 -0
  63. data/spec/fixtures/parl_gc_ca/A1A1A1.response +337 -0
  64. data/spec/fixtures/parl_gc_ca/G0C2Y0.response +337 -0
  65. data/spec/fixtures/parl_gc_ca/H0H0H0.response +226 -0
  66. data/spec/fixtures/parl_gc_ca/K0A1K0.response +784 -0
  67. data/spec/fixtures/parl_gc_ca/T5S2B9.response +511 -0
  68. data/spec/fixtures/parl_gc_ca/X1B1B1.response +226 -0
  69. data/spec/greenparty_ca_spec.rb +7 -0
  70. data/spec/liberal_ca_spec.rb +10 -2
  71. data/spec/ndp_ca_spec.rb +7 -0
  72. data/spec/postal_code_spec.rb +13 -0
  73. data/spec/spec_helper.rb +13 -0
  74. data/spec/strategy_set_spec.rb +0 -0
  75. data/tasks/postal-code-for-districts.csv +212 -0
  76. data/tasks/tasks.rb +73 -0
  77. metadata +180 -98
  78. data/lib/gov_kit-ca/postal_code/strategy/digital_copyright-ca.rb +0 -28
  79. data/tasks/rid_to_edid.rb +0 -136
@@ -0,0 +1,784 @@
1
+ HTTP/1.1 200 OK
2
+ Cache-Control: private
3
+ Content-Type: text/html; charset=utf-8
4
+ Last-Modified: Wed, 02 Feb 2011 05:00:00 GMT
5
+ Server: Microsoft-IIS/7.0
6
+ X-Aspnet-Version: 2.0.50727
7
+ X-Powered-By: ASP.NET
8
+ Date: Sun, 05 Jun 2011 03:17:12 GMT
9
+ Connection: close
10
+ Content-Length: 61615
11
+
12
+
13
+
14
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
15
+
16
+ <html xmlns="http://www.w3.org/1999/xhtml" >
17
+ <head><title>
18
+ Find your Member of Parliament using your Postal Code
19
+ </title><link href="../../CSS/Main_Screen.css" rel="stylesheet" type="text/css" media="all" /><link href="../../CSS/Main_Print.css" rel="stylesheet" type="text/css" media="print" /><link id="ctl00_cssAllStyle" rel="stylesheet" type="text/css" media="all" href="../../CSS/compilations_Screen.css" /><link id="ctl00_cssPrintStyle" rel="stylesheet" type="text/css" media="print" href="../../CSS/compilations_Print.css" /><link href="../../CSS/Index.css" rel="stylesheet" type="text/css" media="all" /><link href="/Common/Parl/Styles/CommonElements.css" type="text/css" rel="stylesheet" media="screen" /></head>
20
+ <body style="background-color:white">
21
+ <form name="aspnetForm" method="post" action="MemberByPostalCode.aspx?PostalCode=K0A1K0" id="aspnetForm">
22
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMjEzNjczNDc3ZBgIBTRjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAzJGdyZFBhcmxpYW1lbnRhcnlBZGRyZXNzDzwrAAoBCAIBZAU0Y3RsMDAkY3BoQ29udGVudCRyZXBNUCRjdGwwMSRncmRQYXJsaWFtZW50YXJ5QWRkcmVzcw88KwAKAQgCAWQFM2N0bDAwJGNwaENvbnRlbnQkcmVwTVAkY3RsMDIkZ3JkQ29uc3RpdHVlbmN5QWRkcmVzcw88KwAKAQgCAWQFM2N0bDAwJGNwaENvbnRlbnQkcmVwTVAkY3RsMDMkZ3JkQ29uc3RpdHVlbmN5QWRkcmVzcw88KwAKAQgCAWQFM2N0bDAwJGNwaENvbnRlbnQkcmVwTVAkY3RsMDEkZ3JkQ29uc3RpdHVlbmN5QWRkcmVzcw88KwAKAQgCAWQFM2N0bDAwJGNwaENvbnRlbnQkcmVwTVAkY3RsMDAkZ3JkQ29uc3RpdHVlbmN5QWRkcmVzcw88KwAKAQgCAWQFNGN0bDAwJGNwaENvbnRlbnQkcmVwTVAkY3RsMDIkZ3JkUGFybGlhbWVudGFyeUFkZHJlc3MPPCsACgEIAgFkBTRjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAwJGdyZFBhcmxpYW1lbnRhcnlBZGRyZXNzDzwrAAoBCAIBZEEBqlT+tDoQe0cEWwxO++K9FFbW" />
23
+
24
+
25
+ <script src="/ParlInfo/JS/Language_E.js" type="text/javascript"></script>
26
+ <script src="/ParlInfo/JS/MainTemplate.js" type="text/javascript"></script>
27
+ <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBQK2q+6hBQKXra4YAtyNkoUNApPP9foMAvCHuoIPhu+j8cn1pm9ECAI8UaljFxuoPVI=" />
28
+ <a id="PageTop"></a><!--This is an anchor used to return to the top of the page-->
29
+
30
+
31
+ <div id="ctl00_ParlHeader">
32
+
33
+ <div class="parlwebsite-toolbar">
34
+ <div class="parlwebsite-logo-area">
35
+ <span class="parlwebsite-homeimage parlwebsite-homeimage-en-CA" title="Parliament of Canada">
36
+ <div><br /><strong>Parliament of Canada</strong><br /><br /></div>
37
+ </span>
38
+ </div>
39
+ <div class="parlwebsite-utility-links">
40
+ <a href="http://www.parl.gc.ca/SiteMap.aspx?Language=E" tabindex="3">Site Map</a> |
41
+ <a href="http://www.parl.gc.ca/ParlInfo/AboutParliamentIndex.aspx?Language=E" tabindex="4">A to Z Index</a> |
42
+ <a href="http://www.parl.gc.ca/ContactUs.aspx?Language=E" tabindex="5">Contact Us</a> |
43
+ <a id="parlwebsite-language-link" href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0&Language=F" title="Fran&ccedil;ais" tabindex="6">Fran&ccedil;ais</a>
44
+ <div class="parlwebsite-search-area">
45
+ <input name="ctl00$ctl05$searchTextbox" type="text" id="ctl00_ctl05_searchTextbox" /><input type="submit" name="ctl00$ctl05$searchButton" value="Search" id="ctl00_ctl05_searchButton" class="test" skipSetLanguage="true" />
46
+ <a href="http://www.parl.gc.ca/Search/Advanced.aspx?Language=E" class="parlwebsite-adv-search">Advanced Search</a>
47
+ </div>
48
+ </div>
49
+ <div class="parlwebsite-nav">
50
+ <a href="http://www.parl.gc.ca/Default.aspx?Language=E" tabindex="7">Home</a> |
51
+ <a href="http://www.parl.gc.ca/ParlBusiness.aspx?Language=E" tabindex="8">Parliamentary Business</a> |
52
+ <a href="http://www.parl.gc.ca/SenatorsMembers.aspx?Language=E" tabindex="9">Senators and Members</a> |
53
+ <a href="http://www.parl.gc.ca/About.aspx?Language=E" tabindex="10">About Parliament</a> |
54
+ <a href="http://www.parl.gc.ca/Visitors/index-E.asp" tabindex="11">Visitor Information</a> |
55
+ <a href="http://www.parl.gc.ca/EmploymentOpportunities/Default.aspx?Language=E" tabindex="12">Employment</a>
56
+ </div>
57
+ </div>
58
+
59
+ </div>
60
+
61
+
62
+ <div id="ctl00_pnlHeader" class="pnlHeaderCentered">
63
+
64
+ <!---->
65
+ <img id="ctl00_Image3" class="IMGTEST2" src="../../images/loptopleft-e.gif" alt=" Parliament of Canada" border="0" />
66
+ </div>
67
+
68
+ <div id="ctl00_pnlMain" class="parlwebsite-parlinfo-body">
69
+
70
+ <div id="ctl00_pnlMenu" class="pnlMenu">
71
+
72
+ <div id="ctl00_pnlMenuContent" class="pnlMenuContent">
73
+
74
+
75
+
76
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootHomeMenu" class="MenuItemSelected">
77
+
78
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootHomeMenu" class="MenuItemLinkSelected" href="../../default.aspx?Menu=Home">PARLINFO - Home</a>
79
+
80
+ </div>
81
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootSitemapMenu" class="MenuSubItem">
82
+
83
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootSitemapMenu" class="MenuSubItemLink" href="../../Sitemap.aspx">Sitemap of ParlInfo</a>
84
+
85
+ </div>
86
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootIndexMenux" class="MenuSubItem">
87
+
88
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootIndexMenu" class="MenuSubItemLink" href="../../AboutParliamentIndex.aspx">A to Z Index</a>
89
+
90
+ </div>
91
+
92
+
93
+
94
+
95
+
96
+ <div id="ctl00_cphMenu_ctl00" class="Menu">
97
+ <div id="ctl00_cphMenu_divMenudefault.aspx.Menu=Home" class="MenuItemInvisible"><a id="ctl00_cphMenu_lnkdefault.aspx.Menu=Home" class="MenuItemInvisibleLink" href="../../default.aspx?Menu=Home">PARLINFO - Home</a></div>
98
+ <div id="ctl00_cphMenu_divMenupages.parliament.aspx.Menu=Parliament" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.parliament.aspx.Menu=Parliament" class="MenuItemLink" href="../../pages/parliament.aspx?Menu=Parliament">Parliament</a></div>
99
+ <div id="ctl00_cphMenu_divMenupages.govgeneral.aspx.Menu=GG" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.govgeneral.aspx.Menu=GG" class="MenuItemLink" href="../../pages/govgeneral.aspx?Menu=GG">Governor General </a></div>
100
+ <div id="ctl00_cphMenu_divMenucompilations.senate.aspx.Menu=Senate" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.senate.aspx.Menu=Senate" class="MenuItemLink" href="../senate.aspx?Menu=Senate">Senate</a></div>
101
+ <div id="ctl00_cphMenu_divMenucompilations.HouseOfCommons.aspx.Menu=HoC" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.HouseOfCommons.aspx.Menu=HoC" class="MenuItemLink" href="../HouseOfCommons.aspx?Menu=HoC">House of Commons</a></div>
102
+ <div id="ctl00_cphMenu_divMenupages.federalgovernment.aspx.Menu=Federal" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.federalgovernment.aspx.Menu=Federal" class="MenuItemLink" href="../../pages/federalgovernment.aspx?Menu=Federal">Federal Government</a></div>
103
+ <div id="ctl00_cphMenu_divMenucompilations.Constitution.aspx.Menu=Constitution" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.Constitution.aspx.Menu=Constitution" class="MenuItemLink" href="../Constitution.aspx?Menu=Constitution">Constitution</a></div>
104
+ <div id="ctl00_cphMenu_divMenucompilations.legislation.aspx.Menu=Legislation" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.legislation.aspx.Menu=Legislation" class="MenuItemLink" href="../legislation.aspx?Menu=Legislation">Legislation</a></div>
105
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="MenuItemSelected"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="MenuItemLinkSelected" href="../ElectionsAndRidings.aspx?Menu=ElectionsRidings">Elections and Ridings</a></div>
106
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.Elections.aspx.Menu=ElectionsRidings-Election" class="MenuSubItemWithChildren"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.Elections.aspx.Menu=ElectionsRidings-Election" class="MenuSubItemWithChildrenLink" href="../ElectionsAndRidings/Elections.aspx?Menu=ElectionsRidings-Election">Elections</a></div>
107
+ <div id="ctl00_cphMenu_divMenu-.Menu=ElectionsRidings-ElectionResults" class="MenuSubItemWithChildren"><a id="ctl00_cphMenu_lnk-.Menu=ElectionsRidings-ElectionResults" class="MenuSubItemWithChildrenLink" href="../ElectionsAndRidings/ResultsParty.aspx">Electoral Results</a></div>
108
+ <div id="ctl00_cphMenu_divMenu-.Menu=ElectionsRidings-Riding" class="MenuSubItemWithChildrenSelected"><a id="ctl00_cphMenu_lnk-.Menu=ElectionsRidings-Riding" class="MenuSubItemWithChildrenLinkSelected" href="MemberByPostalCode.aspx">Ridings / Constituencies</a></div>
109
+ <div id="ctl00_cphMenu_divMenuCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="MenuSubSubItemSelected"><a id="ctl00_cphMenu_lnkCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="MenuSubSubItemLinkSelected" href="MemberByPostalCode.aspx">Find your Member of Parliament using your Postal Code</a></div>
110
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.ConstituencyProvince.aspx" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.ConstituencyProvince.aspx" class="MenuSubSubItemLink" href="../ElectionsAndRidings/ConstituencyProvince.aspx">Federal Electoral Constituencies by Province</a></div>
111
+ <div id="ctl00_cphMenu_divMenuCompilations.HouseOfCommons.Legislation.LegislationElectoralDistrict.aspx.Menu=ElectionsRidings-Legislation" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnkCompilations.HouseOfCommons.Legislation.LegislationElectoralDistrict.aspx.Menu=ElectionsRidings-Legislation" class="MenuSubSubItemLink" href="Legislation/LegislationElectoralDistrict.aspx?Menu=ElectionsRidings-Legislation">Legal Measures Governing Changes in Federal Electoral Districts</a></div>
112
+ <div id="ctl00_cphMenu_divMenu.About.Parliament.FederalRidingsHistory.HFER.asp" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnk.About.Parliament.FederalRidingsHistory.HFER.asp" class="MenuSubSubItemLink" href="/About/Parliament/FederalRidingsHistory/HFER.asp">History of the federal electoral ridings</a></div>
113
+ <div id="ctl00_cphMenu_divMenucompilations.PoliticalParties.PoliticalParties.aspx.Menu=Party" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.PoliticalParties.PoliticalParties.aspx.Menu=Party" class="MenuItemLink" href="../PoliticalParties/PoliticalParties.aspx?Menu=Party">Political Parties</a></div>
114
+ <div id="ctl00_cphMenu_divMenucompilations.ProvinceTerritory.aspx.Menu=ProvinceTerritory" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.ProvinceTerritory.aspx.Menu=ProvinceTerritory" class="MenuItemLink" href="../ProvinceTerritory.aspx?Menu=ProvinceTerritory">Provinces and Territories</a></div>
115
+ <div id="ctl00_cphMenu_divMenuCompilations.SupremeCourt.aspx.Menu=SupremeCourt" class="MenuItem"><a id="ctl00_cphMenu_lnkCompilations.SupremeCourt.aspx.Menu=SupremeCourt" class="MenuItemLink" href="../SupremeCourt.aspx?Menu=SupremeCourt&amp;Current=True">Supreme Court of Canada</a></div>
116
+
117
+ </div>
118
+
119
+ </div>
120
+ <img id="ctl00_Image1" src="../../images/leftnavbottom.gif" alt=" " height="22" width="200" border="0" />
121
+
122
+
123
+ <div id="ctl00_pnlMenuBottom" class="pnlMenuBottom">
124
+
125
+ <div id="ctl00_pnlWhatIsNew">
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ </div>
134
+
135
+ </div>
136
+
137
+ </div>
138
+
139
+ <!-- Related Links -->
140
+
141
+
142
+
143
+ <!-- END Related Links -->
144
+
145
+ <div id="ctl00_pnlContent" class="pnlContent">
146
+
147
+
148
+ <img id="ctl00_imgImageSection" class="imgBrandRight" src="../../images/SectionImage/ElectionsRidings.jpg" alt="Elections and Ridings Section" height="80" width="100" border="0" />
149
+
150
+ <div id="ctl00_pnlBreadCrumpsHolder" class="BreadCrumbsHolder">
151
+
152
+
153
+ <div id="ctl00_cphBreadcrumbs_ctl00" class="Bread">
154
+ <div id="ctl00_cphBreadcrumbs_divBreadCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="BreadItem"><a id="ctl00_cphBreadcrumbs_lnkCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="BreadItemLink" href="../ElectionsAndRidings.aspx?Menu=ElectionsRidings">Elections and Ridings</a></div>
155
+ <div id="ctl00_cphBreadcrumbs_divBread-.Menu=ElectionsRidings-Riding" class="BreadSubItemWithChildren"><a id="ctl00_cphBreadcrumbs_lnk-.Menu=ElectionsRidings-Riding" class="BreadSubItemWithChildrenLink" href="MemberByPostalCode.aspx">Ridings / Constituencies</a></div>
156
+ <div id="ctl00_cphBreadcrumbs_divBreadCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="BreadSubSubItem"><a id="ctl00_cphBreadcrumbs_lnkCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="BreadSubSubItemLink" href="MemberByPostalCode.aspx">Find your Member of Parliament using your Postal Code</a></div>
157
+
158
+ </div>
159
+
160
+ </div>
161
+
162
+ <div id="ctl00_cphContent_HeaderWithoutPicture1_pnlHeader" class="pnlListHeader">
163
+
164
+ <span id="ctl00_cphContent_HeaderWithoutPicture1_lblTitle" class="lblTitle" style="display:inline-block;">Find your Member of Parliament using your Postal Code</span>
165
+
166
+ <div class="pnlRelatedLinks"><span Class="RelatedTitle">Selected Links</span>
167
+ <a href="http://www.pch.gc.ca/pgm/ceem-cced/prtcl/address2-eng.cfm" Class="RelatedLink">Styles of address - Federal dignitaries</a>
168
+ </div>
169
+
170
+ <div id="ctl00_cphContent_HeaderWithoutPicture1_pnlListHeaderNotes" class="pnlListHeaderNote">
171
+
172
+ <span id="ctl00_cphContent_HeaderWithoutPicture1_lblNotes"><P><STRONG>Note</STRONG>: If your postal code returns more than one result, please consult <A href="http://www.elections.ca/scripts/pss/FindED.aspx?L=e&amp;PC=&amp;image.x=20&amp;image.y=11">Elections Canada</A>'s advanced search function.</P>
173
+ <P><STRONG>Source</STRONG>: Statistics Canada -&nbsp;October 2010</P></span>
174
+
175
+
176
+ </div>
177
+
178
+ </div>
179
+
180
+ <div id="ctl00_cphContent_pnlListHeaderCriterias" class="pnlListHeaderCriteria">
181
+
182
+ <span id="ctl00_cphContent_lblCriteria" class="lblCriteria" style="display:inline-block;">Search Criteria</span>
183
+ <div id="ctl00_cphContent_pnlPostalCriteria" class="CriteriaSeparator">
184
+
185
+ <label for="ctl00_cphContent_txtPostalCriteria" id="ctl00_cphContent_lblPostalCriteria" class="CriteriaSeparatorTitleSection">Postal Code (eg. A1A1A1):</label>
186
+ <input name="ctl00$cphContent$txtPostalCriteria" type="text" value="K0A1K0" maxlength="7" id="ctl00_cphContent_txtPostalCriteria" />
187
+
188
+ </div>
189
+
190
+ <div id="ctl00_cphContent_pnlRefreshList" class="CriteriaSeparatorButton">
191
+
192
+ <input type="submit" name="ctl00$cphContent$btnRefreshList" value="Search" id="ctl00_cphContent_btnRefreshList" class="test" />
193
+
194
+ </div>
195
+
196
+ </div>
197
+
198
+
199
+ <div id="ctl00_cphContent_pnlWithMP">
200
+
201
+ <span id="ctl00_cphContent_lblCount"><b><font color="Red">The postal code identified 4 electoral districts, listed below in alphabetical order. To refine your search, please consult <a href="http://www.elections.ca/scripts/pss/FindED.aspx?L=e&PC=&image.x=20&image.y=11">Elections Canada</a>'s advanced search function.<br /></font></b></span>
202
+
203
+ <div id="ctl00_cphContent_repMP_ctl00_pnlGroupMPTop">
204
+
205
+ <div id="ctl00_cphContent_repMP_ctl00_pnlMP" class="panelColumnHolder">
206
+
207
+ <span id="ctl00_cphContent_repMP_ctl00_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Glengarry--Prescott--Russell, Ontario</span><br />
208
+ <div id="ctl00_cphContent_repMP_ctl00_pnlFileImageHolder" class="panelColumnOne">
209
+
210
+ <a id="ctl00_cphContent_repMP_ctl00_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=213c7c78-812a-4123-ac14-dc73da49de1f&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl00_imgMember" src="../../images/Thumbnail.aspx?Item=b57195d5-6985-4e6a-a426-1ab472b036a9" border="0" /></a>
211
+
212
+ </div>
213
+ <div id="ctl00_cphContent_repMP_ctl00_pnlFileHeaderData" class="panelColumnTwo">
214
+
215
+ <a id="ctl00_cphContent_repMP_ctl00_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=213c7c78-812a-4123-ac14-dc73da49de1f&amp;Language=E">Lemieux, Pierre</a><br />
216
+ <a id="ctl00_cphContent_repMP_ctl00_lnkParty" href="../../Files/Party.aspx?Item=0c0ef0db-d14a-4438-8818-784c924f06ae&amp;Language=E">Conservative Party of Canada</a>
217
+ <br />
218
+
219
+ </div>
220
+
221
+ </div>
222
+ <div id="ctl00_cphContent_repMP_ctl00_dataLanguagePreference" class="DataSeparatorMargin15">
223
+
224
+ <span id="ctl00_cphContent_repMP_ctl00_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
225
+ <span id="ctl00_cphContent_repMP_ctl00_LanguagePreferenceData" class="DataSeparatorValueSection">English</span>
226
+
227
+ </div>
228
+
229
+ <div id="ctl00_cphContent_repMP_ctl00_pnlAddress" class="FileTabSection">
230
+
231
+ <span id="ctl00_cphContent_repMP_ctl00_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
232
+
233
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionParliamentaryAddress" class="FileTabSection">
234
+
235
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl00_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
236
+ <span id="ctl00_cphContent_repMP_ctl00_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
237
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
238
+
239
+ <div>
240
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress" width="100%">
241
+ <tr class="GridRows">
242
+ <td><font color="Black">
243
+ <div id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
244
+
245
+
246
+
247
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
248
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-992-0490</span><br />
249
+
250
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
251
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-996-9123</span><br />
252
+
253
+
254
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:Lemieux.P@parl.gc.ca">Lemieux.P@parl.gc.ca</a>
255
+
256
+ </div>
257
+
258
+ <div id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
259
+
260
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
261
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
262
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
263
+
264
+ </div>
265
+ </font></td>
266
+ </tr>
267
+ </table>
268
+ </div>
269
+
270
+ </div>
271
+
272
+ </div>
273
+
274
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddress" class="FileTabSection">
275
+
276
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
277
+ <span id="ctl00_cphContent_repMP_ctl00_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
278
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
279
+
280
+ <div>
281
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress" width="100%">
282
+ <tr class="GridRows">
283
+ <td><font color="Black">
284
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
285
+
286
+
287
+
288
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
289
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">613-525-4575</span><br />
290
+
291
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephoneType">Toll Free:</span>
292
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephonenumber">1–800–990–0490</span><br />
293
+
294
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl02_lblTelephoneType">Fax:</span>
295
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl02_lblTelephonenumber">613-525-5667</span><br />
296
+
297
+
298
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
299
+
300
+ </div>
301
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
302
+
303
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label3">90 Main Street South<br>P.O. Box 549</span><br />
304
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label12">Alexandria</span>,
305
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label4">Ontario</span><br />
306
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label13">K0C 1A0</span>
307
+
308
+ </div>
309
+ </font></td>
310
+ </tr><tr class="GridRowsAlt">
311
+ <td><font color="Black">
312
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_pnlAddressDetails2" class="Column2">
313
+
314
+
315
+
316
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
317
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephonenumber">613-446-6310</span><br />
318
+
319
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephoneType">Toll Free:</span>
320
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephonenumber">1–800–990–0490</span><br />
321
+
322
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl02_lblTelephoneType">Fax:</span>
323
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl02_lblTelephonenumber">613-446-5666</span><br />
324
+
325
+
326
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_HyperLink1" href="mailto:"></a>
327
+
328
+ </div>
329
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_pnlAddressDetails1" class="Column1">
330
+
331
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label3">1468 Laurier Street, Suite 201</span><br />
332
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label12">Rockland</span>,
333
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label4">Ontario</span><br />
334
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label13">K4K 1C7</span>
335
+
336
+ </div>
337
+ </font></td>
338
+ </tr><tr class="GridRows">
339
+ <td><font color="Black">
340
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_pnlAddressDetails2" class="Column2">
341
+
342
+
343
+
344
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
345
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_repConstituencyTelephones_ctl00_lblTelephonenumber">613-632-4162</span><br />
346
+
347
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
348
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_repConstituencyTelephones_ctl01_lblTelephonenumber">613-632-5668</span><br />
349
+
350
+
351
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_HyperLink1" href="mailto:"></a>
352
+
353
+ </div>
354
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_pnlAddressDetails1" class="Column1">
355
+
356
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_Label3">136 Main Street East (behind 134 Main Street)</span><br />
357
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_Label12">Hawkesbury</span>,
358
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_Label4">Ontario</span><br />
359
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl04_Label13">K6A 1A3</span>
360
+
361
+ </div>
362
+ </font></td>
363
+ </tr><tr class="GridRowsAlt">
364
+ <td><font color="Black">
365
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_pnlAddressDetails2" class="Column2">
366
+
367
+
368
+
369
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
370
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_repConstituencyTelephones_ctl00_lblTelephonenumber">613-443-0626</span><br />
371
+
372
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_repConstituencyTelephones_ctl01_lblTelephoneType">Toll Free:</span>
373
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_repConstituencyTelephones_ctl01_lblTelephonenumber">1-880-990-0490</span><br />
374
+
375
+
376
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_HyperLink1" href="mailto:"></a>
377
+
378
+ </div>
379
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_pnlAddressDetails1" class="Column1">
380
+
381
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_Label3">933 Notre-Dame Street<br>P.O. Box 219</span><br />
382
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_Label12">Embrun</span>,
383
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_Label4">Ontario</span><br />
384
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl05_Label13">K0A 1W0</span>
385
+
386
+ </div>
387
+ </font></td>
388
+ </tr>
389
+ </table>
390
+ </div>
391
+
392
+
393
+ </div>
394
+
395
+ </div>
396
+
397
+
398
+ </div>
399
+
400
+ </div>
401
+
402
+ <div id="ctl00_cphContent_repMP_ctl01_pnlGroupMPTop">
403
+
404
+ <div id="ctl00_cphContent_repMP_ctl01_pnlMP" class="panelColumnHolder">
405
+
406
+ <span id="ctl00_cphContent_repMP_ctl01_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Ottawa South, Ontario</span><br />
407
+ <div id="ctl00_cphContent_repMP_ctl01_pnlFileImageHolder" class="panelColumnOne">
408
+
409
+ <a id="ctl00_cphContent_repMP_ctl01_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=0992ca07-764f-4fa6-aa55-9a1f3f0a7327&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl01_imgMember" src="../../images/Thumbnail.aspx?Item=bf39f707-b1b3-4f0b-88bf-008f351a29b6" border="0" /></a>
410
+
411
+ </div>
412
+ <div id="ctl00_cphContent_repMP_ctl01_pnlFileHeaderData" class="panelColumnTwo">
413
+
414
+ <a id="ctl00_cphContent_repMP_ctl01_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=0992ca07-764f-4fa6-aa55-9a1f3f0a7327&amp;Language=E">McGuinty, David J.</a><br />
415
+ <a id="ctl00_cphContent_repMP_ctl01_lnkParty" href="../../Files/Party.aspx?Item=b82f0db7-8535-4cc0-8bad-fd3ad8ea3d49&amp;Language=E">Liberal Party of Canada</a>
416
+ <br />
417
+
418
+ </div>
419
+
420
+ </div>
421
+ <div id="ctl00_cphContent_repMP_ctl01_dataLanguagePreference" class="DataSeparatorMargin15">
422
+
423
+ <span id="ctl00_cphContent_repMP_ctl01_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
424
+ <span id="ctl00_cphContent_repMP_ctl01_LanguagePreferenceData" class="DataSeparatorValueSection">English</span>
425
+
426
+ </div>
427
+
428
+ <div id="ctl00_cphContent_repMP_ctl01_pnlAddress" class="FileTabSection">
429
+
430
+ <span id="ctl00_cphContent_repMP_ctl01_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
431
+
432
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionParliamentaryAddress" class="FileTabSection">
433
+
434
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl01_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
435
+ <span id="ctl00_cphContent_repMP_ctl01_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
436
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
437
+
438
+ <div>
439
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress" width="100%">
440
+ <tr class="GridRows">
441
+ <td><font color="Black">
442
+ <div id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
443
+
444
+
445
+
446
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
447
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-992-3269</span><br />
448
+
449
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
450
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-995-1534</span><br />
451
+
452
+
453
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:McGuinty.D@parl.gc.ca">McGuinty.D@parl.gc.ca</a>
454
+
455
+ </div>
456
+
457
+ <div id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
458
+
459
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
460
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
461
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
462
+
463
+ </div>
464
+ </font></td>
465
+ </tr>
466
+ </table>
467
+ </div>
468
+
469
+ </div>
470
+
471
+ </div>
472
+
473
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionConstituencyAddress" class="FileTabSection">
474
+
475
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl01_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
476
+ <span id="ctl00_cphContent_repMP_ctl01_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
477
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
478
+
479
+ <div>
480
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress" width="100%">
481
+ <tr class="GridRows">
482
+ <td><font color="Black">
483
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
484
+
485
+
486
+
487
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
488
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">613-990-8640</span><br />
489
+
490
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
491
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephonenumber">613-990-2592 </span><br />
492
+
493
+
494
+ <a id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
495
+
496
+ </div>
497
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
498
+
499
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label3">2141 Thurston Drive, Suite 205</span><br />
500
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label12">Ottawa</span>,
501
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label4">Ontario</span><br />
502
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label13">K1G 6C9</span>
503
+
504
+ </div>
505
+ </font></td>
506
+ </tr>
507
+ </table>
508
+ </div>
509
+
510
+
511
+ </div>
512
+
513
+ </div>
514
+
515
+
516
+ </div>
517
+
518
+ </div>
519
+
520
+ <div id="ctl00_cphContent_repMP_ctl02_pnlGroupMPTop">
521
+
522
+ <div id="ctl00_cphContent_repMP_ctl02_pnlMP" class="panelColumnHolder">
523
+
524
+ <span id="ctl00_cphContent_repMP_ctl02_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Nepean--Carleton, Ontario</span><br />
525
+ <div id="ctl00_cphContent_repMP_ctl02_pnlFileImageHolder" class="panelColumnOne">
526
+
527
+ <a id="ctl00_cphContent_repMP_ctl02_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=ad4032f2-6bb1-497b-b146-f321cfb71ba9&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl02_imgMember" src="../../images/Thumbnail.aspx?Item=98c311d8-6359-41ae-805a-08c0cd28cd3b" border="0" /></a>
528
+
529
+ </div>
530
+ <div id="ctl00_cphContent_repMP_ctl02_pnlFileHeaderData" class="panelColumnTwo">
531
+
532
+ <a id="ctl00_cphContent_repMP_ctl02_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=ad4032f2-6bb1-497b-b146-f321cfb71ba9&amp;Language=E">Poilievre, Pierre</a><br />
533
+ <a id="ctl00_cphContent_repMP_ctl02_lnkParty" href="../../Files/Party.aspx?Item=0c0ef0db-d14a-4438-8818-784c924f06ae&amp;Language=E">Conservative Party of Canada</a>
534
+ <br />
535
+
536
+ </div>
537
+
538
+ </div>
539
+ <div id="ctl00_cphContent_repMP_ctl02_dataLanguagePreference" class="DataSeparatorMargin15">
540
+
541
+ <span id="ctl00_cphContent_repMP_ctl02_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
542
+ <span id="ctl00_cphContent_repMP_ctl02_LanguagePreferenceData" class="DataSeparatorValueSection">English</span>
543
+
544
+ </div>
545
+
546
+ <div id="ctl00_cphContent_repMP_ctl02_pnlAddress" class="FileTabSection">
547
+
548
+ <span id="ctl00_cphContent_repMP_ctl02_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
549
+
550
+ <div id="ctl00_cphContent_repMP_ctl02_pnlSectionParliamentaryAddress" class="FileTabSection">
551
+
552
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl02_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
553
+ <span id="ctl00_cphContent_repMP_ctl02_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
554
+ <div id="ctl00_cphContent_repMP_ctl02_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
555
+
556
+ <div>
557
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress" width="100%">
558
+ <tr class="GridRows">
559
+ <td><font color="Black">
560
+ <div id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
561
+
562
+
563
+
564
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
565
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-992-2772</span><br />
566
+
567
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
568
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-992-1209</span><br />
569
+
570
+
571
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:PoiliP@parl.gc.ca">PoiliP@parl.gc.ca</a>
572
+
573
+ </div>
574
+
575
+ <div id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
576
+
577
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
578
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
579
+ <span id="ctl00_cphContent_repMP_ctl02_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
580
+
581
+ </div>
582
+ </font></td>
583
+ </tr>
584
+ </table>
585
+ </div>
586
+
587
+ </div>
588
+
589
+ </div>
590
+
591
+ <div id="ctl00_cphContent_repMP_ctl02_pnlSectionConstituencyAddress" class="FileTabSection">
592
+
593
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl02_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
594
+ <span id="ctl00_cphContent_repMP_ctl02_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
595
+ <div id="ctl00_cphContent_repMP_ctl02_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
596
+
597
+ <div>
598
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress" width="100%">
599
+ <tr class="GridRows">
600
+ <td><font color="Black">
601
+ <div id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
602
+
603
+
604
+
605
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
606
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">613-990-4300</span><br />
607
+
608
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
609
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephonenumber">613-990-4333</span><br />
610
+
611
+
612
+ <a id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
613
+
614
+ </div>
615
+ <div id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
616
+
617
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_Label3">250B Greenbank Road, 2nd level</span><br />
618
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_Label12">Nepean</span>,
619
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_Label4">Ontario</span><br />
620
+ <span id="ctl00_cphContent_repMP_ctl02_grdConstituencyAddress_ctl02_Label13">K2H 8X4</span>
621
+
622
+ </div>
623
+ </font></td>
624
+ </tr>
625
+ </table>
626
+ </div>
627
+
628
+
629
+ </div>
630
+
631
+ </div>
632
+
633
+
634
+ </div>
635
+
636
+ </div>
637
+
638
+ <div id="ctl00_cphContent_repMP_ctl03_pnlGroupMPTop">
639
+
640
+ <div id="ctl00_cphContent_repMP_ctl03_pnlMP" class="panelColumnHolder">
641
+
642
+ <span id="ctl00_cphContent_repMP_ctl03_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Ottawa--Orléans, Ontario</span><br />
643
+ <div id="ctl00_cphContent_repMP_ctl03_pnlFileImageHolder" class="panelColumnOne">
644
+
645
+ <a id="ctl00_cphContent_repMP_ctl03_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=6696452b-1ef5-449d-9002-fd1b57fb0c12&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl03_imgMember" src="../../images/Thumbnail.aspx?Item=6a733be5-b360-47d9-9930-41c74e2b6dc0" border="0" /></a>
646
+
647
+ </div>
648
+ <div id="ctl00_cphContent_repMP_ctl03_pnlFileHeaderData" class="panelColumnTwo">
649
+
650
+ <a id="ctl00_cphContent_repMP_ctl03_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=6696452b-1ef5-449d-9002-fd1b57fb0c12&amp;Language=E">Galipeau, Royal</a><br />
651
+ <a id="ctl00_cphContent_repMP_ctl03_lnkParty" href="../../Files/Party.aspx?Item=0c0ef0db-d14a-4438-8818-784c924f06ae&amp;Language=E">Conservative Party of Canada</a>
652
+ <br />
653
+
654
+ </div>
655
+
656
+ </div>
657
+ <div id="ctl00_cphContent_repMP_ctl03_dataLanguagePreference" class="DataSeparatorMargin15">
658
+
659
+ <span id="ctl00_cphContent_repMP_ctl03_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
660
+ <span id="ctl00_cphContent_repMP_ctl03_LanguagePreferenceData" class="DataSeparatorValueSection">French</span>
661
+
662
+ </div>
663
+
664
+ <div id="ctl00_cphContent_repMP_ctl03_pnlAddress" class="FileTabSection">
665
+
666
+ <span id="ctl00_cphContent_repMP_ctl03_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
667
+
668
+ <div id="ctl00_cphContent_repMP_ctl03_pnlSectionParliamentaryAddress" class="FileTabSection">
669
+
670
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl03_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
671
+ <span id="ctl00_cphContent_repMP_ctl03_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
672
+ <div id="ctl00_cphContent_repMP_ctl03_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
673
+
674
+ <div>
675
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress" width="100%">
676
+ <tr class="GridRows">
677
+ <td><font color="Black">
678
+ <div id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
679
+
680
+
681
+
682
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
683
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-995-1800</span><br />
684
+
685
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
686
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-995-6298</span><br />
687
+
688
+
689
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:Galipeau.R@parl.gc.ca">Galipeau.R@parl.gc.ca</a>
690
+
691
+ </div>
692
+
693
+ <div id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
694
+
695
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
696
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
697
+ <span id="ctl00_cphContent_repMP_ctl03_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
698
+
699
+ </div>
700
+ </font></td>
701
+ </tr>
702
+ </table>
703
+ </div>
704
+
705
+ </div>
706
+
707
+ </div>
708
+
709
+ <div id="ctl00_cphContent_repMP_ctl03_pnlSectionConstituencyAddress" class="FileTabSection">
710
+
711
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_cphContent_repMP_ctl03_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
712
+ <span id="ctl00_cphContent_repMP_ctl03_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
713
+ <div id="ctl00_cphContent_repMP_ctl03_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
714
+
715
+ <div>
716
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress" width="100%">
717
+ <tr class="GridRows">
718
+ <td><font color="Black">
719
+ <div id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
720
+
721
+
722
+
723
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
724
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">613-834-1800</span><br />
725
+
726
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
727
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl01_lblTelephonenumber">613-590-1201</span><br />
728
+
729
+
730
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:galipr1@parl.gc.ca">galipr1@parl.gc.ca</a>
731
+
732
+ </div>
733
+ <div id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
734
+
735
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_Label3">255 Centrum Boulevard</span><br />
736
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_Label12">Orléans</span>,
737
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_Label4">Ontario</span><br />
738
+ <span id="ctl00_cphContent_repMP_ctl03_grdConstituencyAddress_ctl02_Label13">K1E 3W3</span>
739
+
740
+ </div>
741
+ </font></td>
742
+ </tr>
743
+ </table>
744
+ </div>
745
+
746
+
747
+ </div>
748
+
749
+ </div>
750
+
751
+
752
+ </div>
753
+
754
+ </div>
755
+
756
+
757
+ </div>
758
+
759
+
760
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=K0A1K0#PageTop" id="ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrowFooter" title="Back to top of document">^</a>
761
+
762
+ </div>
763
+
764
+ </div>
765
+
766
+
767
+
768
+ <div id="ctl00_ParlFooter">
769
+
770
+ <div class="parlwebsite-footer">
771
+ <a href="http://www.parl.gc.ca/Default.aspx?Language=E">Home</a> |
772
+ <a href="http://www.parl.gc.ca/ImportantNotices.aspx?Language=E">Important Notices</a>
773
+ </div>
774
+
775
+ </div>
776
+
777
+
778
+ <script type="text/javascript">
779
+ //<![CDATA[
780
+ doPopups();//]]>
781
+ </script>
782
+ </form>
783
+ </body>
784
+ </html>