CINXE.COM

Sign up - Parks Canada Newsletter

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Sign up - Parks Canada Newsletter</title> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-75491325-13"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'UA-75491325-13'); </script> <!-- Google Tag Manager --> <script>(function (w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-MV3MGRQ');</script> <!-- End Google Tag Manager --> <!-- Link to the style sheet --> <link href="/css/jquery-ui.css" rel="stylesheet"/> <link href="/css/bootstrap.min.css" rel="stylesheet"/> <link href="/css/bootstrap-theme.min.css" rel="stylesheet"/> <link href="/css/common1_2.css" rel="stylesheet"/> <link href="/css/styles1_2.css" rel="stylesheet"/> <link href="/css/style.css" rel="stylesheet"/> <link href="/css/font-awesome.min.css" rel="stylesheet"/> <script src="/scripts/jquery-3.1.1.min.js"></script> <script src="/scripts/jquery-ui.min.js"></script> <script src="/scripts/bootstrap.min.js"></script> </head> <script type="text/javascript"> $(function () { var dialogResize = false; $("#rulesDialog").dialog({ autoOpen: false, modal: true, width: '800', height: '600', fluid: true, classes: { "ui-dialog-titlebar": "ui-corner-all dialogHeaderExt", }, open: function () { $(".ui-dialog-content").scrollTop(0); } }); $("#rulesDialog").on("dialogresizestart", function (e, ui) { dialogResize = true; }); $("#rulesDialog").on("dialogresizestop", function (e, ui) { dialogResize = false; }); $(window).resize(function () { //Only if not a user resizing if (!dialogResize) { fluidDialog(); } }); // catch dialog if opened within a viewport smaller than the dialog width $(document).on("dialogopen", ".ui-dialog", function (event, ui) { fluidDialog(); }); $("#rulesPop").click(function (e) { $("#rulesDialog").load("ParksContestRulesv3.htm"); $("#rulesDialog").dialog("open"); e.preventDefault(); }); $("cnt_submit").click(function (e) { $(".hdnTimestamp").val((new Date()).toLocaleDateString()); }); $("#emailBox").on('invalid', function (e) { var textfield = $(this).get(0); // 'setCustomValidity not only sets the message, but also marks // the field as invalid. In order to see whether the field really is // invalid, we have to remove the message first textfield.setCustomValidity(''); if (!textfield.validity.valid) { if ($(this).attr('type') == "email" && $(this).val() != '') { textfield.setCustomValidity("Enter a valid email address"); } else { textfield.setCustomValidity('This field is required'); } e.stopPropagation(); e.preventDefault(); $("#btnSave").prop("disabled", false); } }); $("#btnSave").click(function () { $("#ValidatorSummary").removeClass("hidden"); }); $("#emailBox").blur(function () { CheckEmail(); }); }); function validate_optinbox(source, args) { var optinbox = $("#optinbox").get(0); if (optinbox != undefined && optinbox.checked == true) { args.IsValid = true; } else { args.IsValid = false; } return; } function validate_privacybox(source, args) { var privacybox = $("#privacybox").get(0); if (privacybox != undefined && privacybox.checked == true) { args.IsValid = true; } else { args.IsValid = false; } return; } function validateEmailEntry(source, arguements) { var textfield = $("#emailBox").get(0); // 'setCustomValidity not only sets the message, but also marks // the field as invalid. In order to see whether the field really is // invalid, we have to remove the message first textfield.setCustomValidity(''); if (!textfield.validity.valid) { if ($("#emailBox").attr('type') == "email" && $("#emailBox").val() != '') { textfield.setCustomValidity("Enter a valid email address"); } else { textfield.setCustomValidity('This field is required'); } //e.stopPropagation(); //e.preventDefault(); arguements.IsValid = false; $("#btnSave").prop("disabled", false); } else { arguements.IsValid = true; } } function fluidDialog() { var $visible = $(".ui-dialog:visible"); // each open dialog $visible.each(function () { var $this = $(this); var dialog = $this.find(".ui-dialog-content").data("ui-dialog"); // if fluid option == true if (dialog.options.fluid) { var wWidth = $(window).width(); var wHeight = $(window).height(); // check window width against dialog width if (wWidth < (parseInt(dialog.options.width) + 50)) { // keep dialog from filling entire screen dialog.option("width", 0.75 * wWidth); //$this.css("width", "75%"); } //else { // // fix maxWidth bug // $this.css("width", dialog.options.width + "px"); //} if (wHeight < (parseInt(dialog.options.height) + 50)) { // keep dialog from filling entire screen dialog.option("height", 0.75 * wHeight); //$this.css("height", "75%"); } //else { // // fix maxWidth bug // $this.css("height", dialog.options.height + "px"); //} //reposition dialog //dialog.option("position", dialog.options.position); //always center dialog.option("position", { my: "center", at: "center", of: window }); } }); } function toggleFooterLinks(sectionDiv) { $(sectionDiv + " ul").toggleClass("displaySection"); $(sectionDiv).toggleClass("active"); $(sectionDiv + "Btn").toggleClass("selected"); } function optinBoxValid(sender, e) { e.IsValid = $("#optinbox").is(':checked'); } function privacyBoxValid(sender, e) { e.IsValid = $("#privacybox").is(':checked'); } function toggleAlreadySubscribed() { //$("#ValidatorSummary").css("display", "block"); $("#userAlreadyExists").toggleClass("hidden"); } function CheckEmail() { var email = $("#emailBox").val(); var lang = $('input[name="langRadio"]:checked').val(); $.ajax({ type: "POST", url: "/Views/SignUp/SignUp_EN.aspx/CheckEmail", data: '{email: "' + email + '", lang: "' + lang + '" }', contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { var message = $("#message"); if (response.d) { //Email available. $("#userAlreadyExists").removeClass("hidden"); $(".validator").addClass("hidden"); } else { //Email not available. $("#userAlreadyExists").addClass("hidden"); $(".validator").removeClass("hidden"); } } }); }; </script> <body style="background-color: white; margin: 0; padding: 0;"> <div id="page"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MV3MGRQ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="gc_header"> <div id="headerRow0"> <div id="gc_sig_mobile"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="50%" viewBox="0 0 143 34" preserveAspectRatio="xMinYMin meet"> <!-- Web Experience Toolkit (WET) / Boîte à outils de l'expérience Web (BOEW) wet-boew.github.io/wet-boew/License-en.html / wet-boew.github.io/wet-boew/Licence-fr.html --> <defs> <style type="text/css"> .fip_text { fill: #000; } .fip_flag { fill: #F00; } @media screen { .fip_text, .fip_flag { fill: #FFF; } } </style> </defs> <g id="wmms" transform="translate(-1, -1)"> <path class="fip_flag" d="M137.9,1.2h5.2v10.4h-5.2V1.2z M128.9,6.4l-0.3,0.1c0,0,1.8,1.5,1.8,1.6c0.1,0.1,0.2,0.1,0.1,0.4 c-0.1,0.3-0.2,0.6-0.2,0.6s1.6-0.3,1.8-0.4c0.2,0,0.3,0,0.3,0.2c0,0.2-0.1,1.9-0.1,1.9h0.5c0,0-0.1-1.8-0.1-1.9 c0-0.2,0.1-0.2,0.3-0.2c0.2,0,1.8,0.4,1.8,0.4s-0.1-0.4-0.2-0.6c-0.1-0.3,0-0.3,0.1-0.4c0.1-0.1,1.8-1.6,1.8-1.6l-0.3-0.1 c-0.2-0.1-0.1-0.2-0.1-0.3s0.3-1.1,0.3-1.1s-0.8,0.2-0.9,0.2c-0.1,0-0.2,0-0.2-0.1s-0.2-0.5-0.2-0.5s-0.9,1-1,1.1 c-0.2,0.2-0.4,0-0.3-0.2c0-0.2,0.5-2.3,0.5-2.3s-0.5,0.3-0.7,0.4s-0.3,0.1-0.3-0.1c-0.1-0.2-0.7-1.3-0.7-1.4c0,0-0.6,1.2-0.7,1.4 s-0.2,0.2-0.3,0.1c-0.2-0.1-0.7-0.4-0.7-0.4s0.5,2.1,0.5,2.3s-0.1,0.3-0.3,0.2l-1-1.1c0,0-0.1,0.3-0.2,0.4c0,0.1-0.1,0.2-0.2,0.1 c-0.2,0-1-0.2-1-0.2s0.3,1,0.4,1.1C129.1,6.1,129.1,6.3,128.9,6.4z M122.2,1.2h5.2v10.4h-5.2V1.2z"></path> <path class="fip_text" d="M144.2,32.4c-0.4,0.9-1.2,1.2-1.7,1.2c-0.6,0-2.4-0.1-2.4-4.8c0,0,0-9.5,0-10.1c0-3.1-2.4-5.6-8.6-5.6 c-6.7,0-6.8,3.3-6.8,4.1c-0.1,0.9,0.4,1.9,2.1,1.9c1.5,0,1.9-1.7,2.1-2.3c0.2-0.7,0.3-2.7,3-2.7c2.3,0,3.7,2,3.8,4.9 c0,0.5,0,0.8,0,1.1c0,0.2,0,0.3,0,0.5l0,0l0,0v0.1c-0.2,1-0.7,1.5-1.6,1.9c-1.2,0.6-4.7,1.1-5.1,1.2c-1.4,0.3-5.3,1.3-5.2,5.4 c0.1,4,4.1,5.4,6.9,5.3c2.7-0.1,4.3-1.2,5-1.8c0.4-0.3,0.4-0.3,0.7,0.1c0.4,0.4,1.7,1.7,4.8,1.7c3.2,0,3.6-1.5,3.8-2 C145.1,32.2,144.4,31.9,144.2,32.4z M131.7,33.5c-2.8,0-3.5-2.3-3.5-3.5c0-1.1,0.6-3.4,3.4-5c0,0,1.3-0.8,3.8-1.8 c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2l0,0l0,0v0.1l0,0l0,0v0.1l0,0l0,0l0,0v4.2C135.7,31.1,134.1,33.5,131.7,33.5z M122.5,33.4 c-0.4-0.1-2.9,0.2-2.9-7.4s0-23.9,0-23.9c0-0.3,0-1.1-0.9-1.1c-0.9,0-6.9,0.3-7.3,0.4c-0.4,0-0.7,0.5,0,0.5 c0.7,0.1,3.9,0.3,3.9,5.6c0,2.6,0,5.2,0,7.1c0,0.1,0,0.2,0,0.2c0,0.2,0,0.3-0.1,0.4c0,0,0,0,0,0.1l0,0c-0.1,0.1-0.2,0-0.5-0.2 c-0.5-0.4-2.8-1.8-5.7-1.8c-4.7,0-10.5,3.4-10.5,10.4c0,7.5,5.3,11.1,10.8,11.1c2.7,0,4.6-1.2,5.3-1.6c0.8-0.5,0.7-0.4,0.8,0.3 c0.1,0.5,0,1.5,1.4,1.4c1.5-0.2,5.1-0.6,5.8-0.7C123.3,33.9,123.1,33.5,122.5,33.4z M110.1,33.7c-4.4,0-6.7-5.2-6.7-10.2 c0-5.5,3.1-9.2,6.4-9c4.3,0.3,5.4,3.7,5.5,9.8c0,0.4,0,0.8,0,1.3C115.2,31.6,112.7,33.7,110.1,33.7z M98.4,32.4 c-0.4,0.9-1.2,1.2-1.7,1.2c-0.6,0-2.4-0.1-2.4-4.8c0,0,0-9.5,0-10.1c0-3.1-2.4-5.6-8.6-5.6c-6.7,0-6.8,3.3-6.8,4.1 c-0.1,0.9,0.4,1.9,2.1,1.9c1.5,0,1.9-1.7,2.1-2.3c0.2-0.7,0.3-2.7,3-2.7c2.3,0,3.8,2,3.8,5v0.1c0,0.1,0,0.2,0,0.2v0.3 c0,0.1,0,0.3,0,0.4c-0.1,1.5-0.5,2-1.7,2.6c-1.2,0.6-4.7,1.1-5.1,1.2c-1.4,0.3-5.3,1.3-5.2,5.4c0.1,4,4.1,5.4,6.9,5.3 c2.7-0.1,4.3-1.2,5-1.8c0.4-0.3,0.4-0.3,0.7,0.1c0.4,0.4,1.7,1.7,4.8,1.7c3.2,0,3.6-1.5,3.8-2C99.3,32.2,98.7,31.9,98.4,32.4z M86,33.5c-2.8,0-3.5-2.3-3.5-3.5c0-1.1,0.6-3.4,3.4-5c0,0,1.3-0.8,3.8-1.8c0.1,0,0.2,0,0.2,0v0.1l0,0l0,0c0,0.1,0,0.2,0,0.4v-0.1 c0,0,0,0,0,0.1v4.2C89.9,31.1,88.3,33.5,86,33.5z M76.4,33.4c-0.8-0.2-2.2-1.1-2.2-5.5v-8c0-1.9,0.2-6.8-7.3-6.8 c-3.9,0-6.1,2-6.3,2.1c-0.3,0.3-0.5,0.4-0.6-0.1c-0.1-0.4-0.3-1-0.4-1.4c-0.1-0.3-0.3-0.6-1-0.5c-0.7,0.1-5.1,0.8-5.9,1 c-0.7,0.2-0.5,0.5,0,0.6c0.5,0.1,2.9,0.3,2.9,4.4s0,8.6,0,8.6c0,5-1,5.4-1.9,5.7c-1.2,0.3-0.6,0.7-0.1,0.7c0,0,8.9,0,9.1,0 c0.6,0,0.9-0.6-0.3-0.8c-1.2-0.2-2.3-0.9-2.3-4.8c0-0.4,0-4.7,0-5.5c0-2.1-0.5-8.5,5.3-8.6c4.1-0.1,4.5,3.3,4.5,5.5v8.5 c0,3.5-1,4.6-2.2,4.8c-1.1,0.2-0.9,0.7-0.3,0.7c0.2,0,9.3,0,9.3,0C77.2,34.2,77.7,33.7,76.4,33.4z M52.1,32.4 c-0.4,0.9-1.2,1.2-1.7,1.2c-0.6,0-2.4-0.1-2.4-4.8c0,0,0-9.5,0-10.1c0-3.1-2.4-5.6-8.6-5.6c-6.7,0-6.8,3.3-6.8,4.1 c-0.1,0.9,0.4,1.9,2.1,1.9c1.5,0,1.9-1.7,2.1-2.3c0.2-0.7,0.3-2.7,3-2.7c2.3,0,3.7,2,3.8,4.9c0,0.5,0,0.8,0,1.1 c0,0.2,0,0.4-0.1,0.5v0.1l0,0c-0.2,1-0.7,1.5-1.6,1.9c-1.2,0.6-4.7,1.1-5.1,1.2c-1.4,0.3-5.3,1.3-5.2,5.4c0.1,4,4.1,5.4,6.9,5.3 c2.7-0.1,4.3-1.2,5-1.8c0.4-0.3,0.4-0.3,0.7,0.1c0.4,0.4,1.7,1.7,4.8,1.7c3.2,0,3.6-1.5,3.8-2C53,32.2,52.3,31.9,52.1,32.4z M39.6,33.5c-2.8,0-3.5-2.3-3.5-3.5s0.6-3.4,3.4-5c0,0,1.3-0.8,3.8-1.8c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2l0,0l0,0l0,0 c0,0,0,0.1,0,0.2l0,0l0,0v0.1l0,0l0,0l0,0v4.2C43.6,31.1,42,33.5,39.6,33.5z M30,24.8c-1,3.2-2.9,8.4-9.8,8.6 C13,33.5,8.7,28.6,8.5,19.5C8.2,9.8,12.4,2.4,18.9,2.2c7.3-0.1,9.9,8.6,10,9.9c0.1,1,1.4,0.9,1.4-0.1c0-0.5-0.6-9.1-0.8-10.1 c-0.2-1-1-0.6-1.2-0.2C28.2,2,28.4,1.4,28,2.3c-0.4,0.9-1.5,0.4-1.9,0.3c-1.2-0.5-3.5-1.7-7.2-1.6c-8.5,0.2-17.2,6.5-17,17.5 c0.2,10.7,8.8,16.7,16.8,16.6c7.3-0.1,11.4-4.7,12.6-10C31.7,23.8,30.4,23.5,30,24.8z"></path> </g> </svg> </div> <div id="gc_sig_rev"><img src="../images/sig-rev-1.gif" alt="Government of Canada" width="234" /></div> <div id="gc_sig"><img src="../images/sig-1.gif" alt="Government of Canada" width="214" /></div> <div id="gc_links"> <ul id="gc_top_links"> <li id="gc_canada"><a href="https://www.canada.ca/en.html">Canada.ca</a></li> <li id="gc_services"><a href="https://www.canada.ca/en/services.html">Services</a></li> <li id="gc_departments"><a href="https://www.canada.ca/en/government/dept.html">Departments</a></li> <li id="gc_lang"> <a href="/fr/abonnement">Français</a></li> </ul> </div> </div> </div> <header> <div id="header" role="banner"> <div id="headerRow1"> <div id="logo"> <div id="contentRecommendationWidget_HeaderStoreLogo_Content" class="contentRecommendationWidget"> <div id="left_espot"> <div id="storename"> <h1> <a class="storename_normal" href="https://www.pc.gc.ca/en/index">Parks Canada</a> </h1> </div> </div> </div> </div> <div id="canadaLogo"> <img src="../images/Canada-rev.gif" alt="Canada Government" /> </div> </div> <div id="headerRow2"> </div> </div> </header> <div id="contentWrapper" class="headerMargin"> <div style="padding: 1px 30px; border-left: 1px solid #ccc; border-right: 1px solid #ccc;"> <div class="row title_container"> <h2 class="landing-title">Sign up for the <span style="white-space: nowrap;">Parks Canada</span> Newsletter</h2> <p>Be among the first to find out about Parks Canada events and activities, special offers, trip planning news and much more &mdash; all delivered directly to your inbox! Take a look at a <a href="https://pcan-ebulletin.ca/2023-B_spring-printemps_en.html" target="_blank">past newsletter edition</a> to see what type of great content you can look forward to.</p> </div> <div class="main_form_container"> <form method="POST" action="./signup" onsubmit="javascript:return WebForm_OnSubmit();" id="ctl03" enctype="multipart/form-data" autocomplete="off"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['ctl03']; if (!theForm) { theForm = document.ctl03; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZPhsDbyym4PLaRr-28aJpb6X1tBASh_f5ws7cMyzK2fGTq-neGU5EFP7kAm-F3qdrQ2&amp;t=638568460745067788" type="text/javascript"></script> <script src="/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1Bkn5HV8pE6Ji_ERWjujCzlDhW7rVjsxYry7adodX5LyWo8Mer82jSebRfENM7-xzlr-R2_1wrMkGy4hxltNrvYs2LPc7UUc5Zj2A22k3io_8WZV6j1EQvnGFEcMIfKr7A2&amp;t=7266186d" type="text/javascript"></script> <script src="/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvtg3Iy4z-Ubo4NJ__THESNCaECWhk-voTYuqJ1eluGqHhboNQPzPOF2TnYLqnhS4A_ni3uI7VeBn2BavrqwvOagDZ8Y059kEPVqjo1GWGVtI-iy8TwwhRuwGWn__shmwFpiZTKzppVlPaCYlVrKMA6k1&amp;t=ffffffffc820c398" type="text/javascript"></script> <script src="/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLSL5Iizl-VKRzulAWYULCX8PFkve3E3ATYNQneBp4GemdEN_J2fZj1rhhehDJmf923Y5CSr_8IBSK_U3WSKsvd-MhI7LEzhV7bGvDKJVWifzLMogjdOoYM-rS9xxo7IbJhaWyqHdZca64wnvUFXkZA1&amp;t=ffffffffc820c398" type="text/javascript"></script> <script src="/ScriptResource.axd?d=eE6V8nDbUVn0gtG6hKNX_Itvi4w1cvbw6ilw4sGMuW_qaYBc26_iHdsV1RyFWQwh2x1z8S_R8SnVeUw-LicOTwyeO8xnMJ4HfRWzJWSgQdTLdUUN8MzhuNseVGBM-vJZ0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=mcAASOSteirJeuV-3by3Ub8GR_UjDScWZ8QGjXVn3sv-H0h-T010xebhIGV9YBPpfsp7Y2XVtFoyUwN07xfnT1ss29l63wMFlDCA82mJ2-01&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=jwf4VSQi7LeShc44FJ-gAQcm921rwGZY_UMdm08rnp3paUzWRjeI59KPeIL4ZIQ_dVK-G-aQ9T2dRY80oBvGn4Kx30sSeipd3hc9kPrA1Ee8yd84FSkP3JCIL6QNusoy0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=nai7mGcYyE2dix_TwveLDQjQUc_jDmmraqw1w6xhyJNJ5nVFU1jV1tNDFcvvbdZ1sW4ygJlgt6tfT3Fwrld0SRuQOY2OkkV__ltNmzy_1PhWwL0OgJzPkaTBQbo1owOn0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=LQ1q2RBSthBAZhliMjtG_wjEjFpKTKOltIZcgVJGS-8nTc8ZMyNLGCa5WsA7CoyXm3NePeb9iGMRusZVgRp6ckBTC0mirYwFJ46iLdg-FJCwaKqVPM1MfXD9N00GMKFB0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=HEFpVKbnoeQjkjHkFKu3MM3JkNa1Bi1Kb01anif6Xy6LHgpr6Ys6tEuJWhoQfztzNhL0wDEcapji2NPQ92RO-zRIn4v69XXN6-EIQlapwbcAciiC_fB5qw0GnGZodPgF0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=VOYD8Xe7kQA0lniBYXVpAurM5rpPKdcQltCJUzYStXBfnbAMvg4JrUFbBcqmCi5ftyibRPLAZ3JbdZhu3YcDDAQ5VeXjVF2d9kJKUnltigcCXIBUTaQTxwyq_DAPBQoK0&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=24039AtbfhsNBYQDFUMYHKgpxRnPlZy8m7TV_u4TKE1vbSQvuU3S_deXLJaPWFxwPEhgjFth8OA75wFYradLmmmcZILFYG_qQfMK700N6Kw1&amp;t=7d5986a" type="text/javascript"></script> <script src="/ScriptResource.axd?d=iDJsJb59XB5efowLsFnqUOaz-FsGXmk9cZwkAFgfl8ZM0CnGpYYqZqsvUgLbze5vkLsSA1Sf3x9QqVYkvm0bSQRgm381i80Jf8JgfMym4c8b85S4D5HJFWok524SBSD00&amp;t=7d5986a" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ var PageMethods = function() { PageMethods.initializeBase(this); this._timeout = 0; this._userContext = null; this._succeeded = null; this._failed = null; } PageMethods.prototype = { _get_path:function() { var p = this.get_path(); if (p) return p; else return PageMethods._staticInstance.get_path();}, CheckEmail:function(email,lang,succeededCallback, failedCallback, userContext) { return this._invoke(this._get_path(), 'CheckEmail',false,{email:email,lang:lang},succeededCallback,failedCallback,userContext); }} PageMethods.registerClass('PageMethods',Sys.Net.WebServiceProxy); PageMethods._staticInstance = new PageMethods(); PageMethods.set_path = function(value) { PageMethods._staticInstance.set_path(value); } PageMethods.get_path = function() { return PageMethods._staticInstance.get_path(); } PageMethods.set_timeout = function(value) { PageMethods._staticInstance.set_timeout(value); } PageMethods.get_timeout = function() { return PageMethods._staticInstance.get_timeout(); } PageMethods.set_defaultUserContext = function(value) { PageMethods._staticInstance.set_defaultUserContext(value); } PageMethods.get_defaultUserContext = function() { return PageMethods._staticInstance.get_defaultUserContext(); } PageMethods.set_defaultSucceededCallback = function(value) { PageMethods._staticInstance.set_defaultSucceededCallback(value); } PageMethods.get_defaultSucceededCallback = function() { return PageMethods._staticInstance.get_defaultSucceededCallback(); } PageMethods.set_defaultFailedCallback = function(value) { PageMethods._staticInstance.set_defaultFailedCallback(value); } PageMethods.get_defaultFailedCallback = function() { return PageMethods._staticInstance.get_defaultFailedCallback(); } PageMethods.set_enableJsonp = function(value) { PageMethods._staticInstance.set_enableJsonp(value); } PageMethods.get_enableJsonp = function() { return PageMethods._staticInstance.get_enableJsonp(); } PageMethods.set_jsonpCallbackParameter = function(value) { PageMethods._staticInstance.set_jsonpCallbackParameter(value); } PageMethods.get_jsonpCallbackParameter = function() { return PageMethods._staticInstance.get_jsonpCallbackParameter(); } PageMethods.set_path("signup"); PageMethods.CheckEmail= function(email,lang,onSuccess,onFailed,userContext) {PageMethods._staticInstance.CheckEmail(email,lang,onSuccess,onFailed,userContext); } function WebForm_OnSubmit() { if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false; return true; } //]]> </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="A8F303EB" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="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" /> </div> <div id="ValidatorSummary" class="ValidatorSummary hidden"> <div id="valSum" style="display:none;"> </div> <span id="validateEmailTop" style="color:#295376;display:none;"><li><a href='#emailBox'>Email – required</a></li></span> <span id="validateEmailConfirmTop" style="color:#295376;display:none;"><li><a href='#emailBoxConfirm'>Confirm email – required</a></li></span> <span id="emailCompareValidatorTop" style="color:#295376;display:none;"><li><a href='#emailBoxConfirm'>Email addresses must match – required</a></li></span> <span id="validatepostalCodeTop" style="color:#295376;display:none;"><li><a href='#postalCode'>Postal code – must be a Canadian postal code with A1A 1A1 format</a></li></span> <span id="validateoptinboxTop" style="color:#295376;display:none;"><li><a href='#optinbox'>Yes, I’d like to receive emails – required</a></li></span> </div> <div id="userAlreadyExists" class="ValidatorSummary hidden"> <div> <h2>You have already signed up for our newsletter.</h2> <p>An email is being sent to you now. Use the link we send to update your personal information.</p> </div> </div> <div class="row"> <div class="col-md-6"> <div style="padding-right: 30px;" class="formGroup"> <label for="emailBox"> <span><b>Email address</b> </span><span style="color: #D3080C;">(required)</span> </label> <br /> <span id="validateEmail" class="validator" style="display:none;">This field is required</span> <span id="customEmailValid" class="validator" style="display:none;">Enter a valid email address</span> <input name="emailBox" id="emailBox" type="email" name="Email" class="inputWide" /> </div> <div style="padding-right: 30px;" class="formGroup"> <label for="emailBoxConfirm"> <span><b>Confirm email address</b> </span><span style="color: #D3080C;">(required)</span> </label> <br /> <span id="validateEmailConfirm" class="validator" style="display:none;">This field is required</span> <span id="emailCompareValidator" class="validator" style="display:none;">Emails must match!</span> <input name="emailBoxConfirm" id="emailBoxConfirm" type="email" name="EmailConfirm" class="inputWide" onpaste="return false" /> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ScriptManager1', 'ctl03', [], [], [], 90, ''); //]]> </script> </div> <div style="padding-right: 30px;" class="formGroup"> <label for="countryBox"> <span><b>Country of residence</b> </span> </label> <br /> <select name="ddlCountry" id="ddlCountry" name="ddlCountry" class="inputWide"> <option value=""></option> <option value="Canada">Canada</option> <option value="United States">United States</option> <option value="Afghanistan">Afghanistan</option> <option value="Albania">Albania</option> <option value="Algeria">Algeria</option> <option value="American Samoa">American Samoa</option> <option value="Andorra">Andorra</option> <option value="Angola">Angola</option> <option value="Anguilla">Anguilla</option> <option value="Antigua and Barbuda">Antigua and Barbuda</option> <option value="Argentina">Argentina</option> <option value="Armenia">Armenia</option> <option value="Aruba">Aruba</option> <option value="Australia">Australia</option> <option value="Austria">Austria</option> <option value="Azerbaijan">Azerbaijan</option> <option value="Bahamas">Bahamas</option> <option value="Bahrain">Bahrain</option> <option value="Bangladesh">Bangladesh</option> <option value="Barbados">Barbados</option> <option value="Belarus">Belarus</option> <option value="Belgium">Belgium</option> <option value="Belize">Belize</option> <option value="Benin">Benin</option> <option value="Bermuda">Bermuda</option> <option value="Bhutan">Bhutan</option> <option value="Bolivia">Bolivia</option> <option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option> <option value="Botswana">Botswana</option> <option value="Bouvet Island">Bouvet Island</option> <option value="Brazil">Brazil</option> <option value="British Indian Ocean Territory">British Indian Ocean Territory</option> <option value="Brunei">Brunei</option> <option value="Bulgaria">Bulgaria</option> <option value="Burkina Faso">Burkina Faso</option> <option value="Burundi">Burundi</option> <option value="Cambodia">Cambodia</option> <option value="Cameroon">Cameroon</option> <option value="Cape Verde">Cape Verde</option> <option value="Cayman Islands">Cayman Islands</option> <option value="Central African Republic">Central African Republic</option> <option value="Chad">Chad</option> <option value="Chile">Chile</option> <option value="China">China</option> <option value="Christmas Island">Christmas Island</option> <option value="Cocos Islands">Cocos Islands</option> <option value="Colombia">Colombia</option> <option value="Comoros">Comoros</option> <option value="Congo">Congo</option> <option value="Congo, Democratic Republic of the">Congo, Democratic Republic of the</option> <option value="Cook Islands">Cook Islands</option> <option value="Costa Rica">Costa Rica</option> <option value="Cote d&#39;Ivoire">Cote d&#39;Ivoire</option> <option value="Croatia">Croatia</option> <option value="Cuba">Cuba</option> <option value="Cyprus">Cyprus</option> <option value="Czech Republic">Czech Republic</option> <option value="Denmark">Denmark</option> <option value="Djibouti">Djibouti</option> <option value="Dominica">Dominica</option> <option value="Dominican Republic">Dominican Republic</option> <option value="East Timor">East Timor</option> <option value="Ecuador">Ecuador</option> <option value="Egypt">Egypt</option> <option value="El Salvador">El Salvador</option> <option value="Equatorial Guinea">Equatorial Guinea</option> <option value="Eritrea">Eritrea</option> <option value="Estonia">Estonia</option> <option value="Ethiopia">Ethiopia</option> <option value="Falkland Islands">Falkland Islands</option> <option value="Faroe Islands">Faroe Islands</option> <option value="Fiji">Fiji</option> <option value="Finland">Finland</option> <option value="France">France</option> <option value="French Guiana">French Guiana</option> <option value="French Polynesia">French Polynesia</option> <option value="French Southern Territories">French Southern Territories</option> <option value="Gabon">Gabon</option> <option value="Gambia">Gambia</option> <option value="Georgia">Georgia</option> <option value="Germany">Germany</option> <option value="Ghana">Ghana</option> <option value="Gibraltar">Gibraltar</option> <option value="Greece">Greece</option> <option value="Greenland">Greenland</option> <option value="Grenada">Grenada</option> <option value="Guadeloupe">Guadeloupe</option> <option value="Guam">Guam</option> <option value="Guatemala">Guatemala</option> <option value="Guinea">Guinea</option> <option value="Guinea-Bissau">Guinea-Bissau</option> <option value="Guyana">Guyana</option> <option value="Haiti">Haiti</option> <option value="Heard Island and Mcdonald Islands">Heard Island and Mcdonald Islands</option> <option value="Holy See">Holy See</option> <option value="Honduras">Honduras</option> <option value="Hong Kong S.A.R. of China">Hong Kong S.A.R. of China</option> <option value="Hungary">Hungary</option> <option value="Iceland">Iceland</option> <option value="India">India</option> <option value="Indonesia">Indonesia</option> <option value="Iran">Iran</option> <option value="Iraq">Iraq</option> <option value="Ireland">Ireland</option> <option value="Israel">Israel</option> <option value="Italy">Italy</option> <option value="Jamaica">Jamaica</option> <option value="Japan">Japan</option> <option value="Jersey">Jersey</option> <option value="Jordan">Jordan</option> <option value="Kazakhstan">Kazakhstan</option> <option value="Kenya">Kenya</option> <option value="Kiribati">Kiribati</option> <option value="Korea, North">Korea, North</option> <option value="Korea, South">Korea, South</option> <option value="Kuwait">Kuwait</option> <option value="Kyrgyzstan">Kyrgyzstan</option> <option value="Laos">Laos</option> <option value="Latvia">Latvia</option> <option value="Lebanon">Lebanon</option> <option value="Lesotho">Lesotho</option> <option value="Liberia">Liberia</option> <option value="Libya">Libya</option> <option value="Liechtenstein">Liechtenstein</option> <option value="Lithuania">Lithuania</option> <option value="Luxembourg">Luxembourg</option> <option value="Macau S.A.R. of China">Macau S.A.R. of China</option> <option value="Macedonia">Macedonia</option> <option value="Madagascar">Madagascar</option> <option value="Malawi">Malawi</option> <option value="Malaysia">Malaysia</option> <option value="Maldives">Maldives</option> <option value="Mali">Mali</option> <option value="Malta">Malta</option> <option value="Marshall Islands">Marshall Islands</option> <option value="Martinique">Martinique</option> <option value="Mauritania">Mauritania</option> <option value="Mauritius">Mauritius</option> <option value="Mayotte">Mayotte</option> <option value="Mexico">Mexico</option> <option value="Micronesia">Micronesia</option> <option value="Moldova">Moldova</option> <option value="Monaco">Monaco</option> <option value="Mongolia">Mongolia</option> <option value="Montserrat">Montserrat</option> <option value="Morocco">Morocco</option> <option value="Mozambique">Mozambique</option> <option value="Myanmar">Myanmar</option> <option value="Namibia">Namibia</option> <option value="Nauru">Nauru</option> <option value="Nepal">Nepal</option> <option value="Netherlands">Netherlands</option> <option value="Netherlands Antilles">Netherlands Antilles</option> <option value="New Caledonia">New Caledonia</option> <option value="New Zealand">New Zealand</option> <option value="Nicaragua">Nicaragua</option> <option value="Niger">Niger</option> <option value="Nigeria">Nigeria</option> <option value="Niue">Niue</option> <option value="Norfolk Island">Norfolk Island</option> <option value="Northern Mariana Islands">Northern Mariana Islands</option> <option value="Norway">Norway</option> <option value="Oman">Oman</option> <option value="Pakistan">Pakistan</option> <option value="Palau">Palau</option> <option value="Palestinian Territory">Palestinian Territory</option> <option value="Panama">Panama</option> <option value="Papua New Guinea">Papua New Guinea</option> <option value="Paraguay">Paraguay</option> <option value="Peru">Peru</option> <option value="Philippines">Philippines</option> <option value="Pitcairn">Pitcairn</option> <option value="Poland">Poland</option> <option value="Portugal">Portugal</option> <option value="Puerto Rico">Puerto Rico</option> <option value="Qatar">Qatar</option> <option value="Reunion">Reunion</option> <option value="Romania">Romania</option> <option value="Russian Federation">Russian Federation</option> <option value="Rwanda">Rwanda</option> <option value="Saint Barthélemy">Saint Barth&#233;lemy</option> <option value="Saint Helena">Saint Helena</option> <option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option> <option value="Saint Lucia">Saint Lucia</option> <option value="Saint Pierre and Miquelon">Saint Pierre and Miquelon</option> <option value="Saint Vincent and the Grenadines">Saint Vincent and the Grenadines</option> <option value="Samoa">Samoa</option> <option value="San Marino">San Marino</option> <option value="Sao Tome and Principe">Sao Tome and Principe</option> <option value="Saudi Arabia">Saudi Arabia</option> <option value="Senegal">Senegal</option> <option value="Seychelles">Seychelles</option> <option value="Sierra Leone">Sierra Leone</option> <option value="Singapore">Singapore</option> <option value="Slovakia">Slovakia</option> <option value="Slovenia">Slovenia</option> <option value="Solomon Islands">Solomon Islands</option> <option value="Somalia">Somalia</option> <option value="South Africa">South Africa</option> <option value="South Georgia and the South Sandwich Islands">South Georgia and the South Sandwich Islands</option> <option value="Spain">Spain</option> <option value="Sri Lanka">Sri Lanka</option> <option value="Sudan">Sudan</option> <option value="Suriname">Suriname</option> <option value="Svalbard and Jan Mayen">Svalbard and Jan Mayen</option> <option value="Swaziland">Swaziland</option> <option value="Sweden">Sweden</option> <option value="Switzerland">Switzerland</option> <option value="Syria">Syria</option> <option value="Taiwan">Taiwan</option> <option value="Tajikistan">Tajikistan</option> <option value="Tanzania">Tanzania</option> <option value="Thailand">Thailand</option> <option value="Togo">Togo</option> <option value="Tokelau">Tokelau</option> <option value="Tonga">Tonga</option> <option value="Trinidad and Tobago">Trinidad and Tobago</option> <option value="Tunisia">Tunisia</option> <option value="Turkey">Turkey</option> <option value="Turkmenistan">Turkmenistan</option> <option value="Turks and Caicos Islands">Turks and Caicos Islands</option> <option value="Tuvalu">Tuvalu</option> <option value="Uganda">Uganda</option> <option value="Ukraine">Ukraine</option> <option value="United Arab Emirates">United Arab Emirates</option> <option value="United Kingdom">United Kingdom</option> <option value="United States Minor Outlying Islands">United States Minor Outlying Islands</option> <option value="Uruguay">Uruguay</option> <option value="Uzbekistan">Uzbekistan</option> <option value="Vanuatu">Vanuatu</option> <option value="Venezuela">Venezuela</option> <option value="Viet Nam">Viet Nam</option> <option value="Virgin Islands, British">Virgin Islands, British</option> <option value="Virgin Islands, US">Virgin Islands, US</option> <option value="Wallis and Futuna">Wallis and Futuna</option> <option value="Western Sahara">Western Sahara</option> <option value="Yemen">Yemen</option> <option value="Zambia">Zambia</option> <option value="Zimbabwe">Zimbabwe</option> <option value="Other">Other</option> </select> </div> <div style="padding-right: 30px;" class="formGroup"> <label for="postalCode"> <b>Postal code </b>(Canadian residents only) </label> <br /> <span id="postalCodeValidator" class="validator" style="display:none;">The postal code must be a Canadian postal code with A1A 1A1 format</span> <div id="postalTextContainer"> <input name="postalCode" id="postalCode" type="text" name="postalCode" class="inputReg" /> <span id="postalExampleText" style="color: black">Example: A1A&nbsp;1A1</span> </div> <p class="postal-code-text">Your postal code allows us to share Parks Canada information with you about places close to home.</p> </div> </div> <div class="col-md-6 hidden-sm hidden-xs"> <div class="image_container"> <img src="../images/Sunset_CBH_2023-PC-Newsletter-Sign-up-page-update-WEB.jpg" alt="Your story starts here" style="max-width: 100%;" /> <div class="image-overlay-text-block"> <p>Your story starts here</p> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="formGroup interests"> <fieldset> <legend>Interests </legend> <br /> <div class="row"> <div class="col-md-6"> <div class="formGroup"> <input id="campingCheckBox" type="checkbox" name="campingCheckBox" /><label for="campingCheckBox">Camping and accommodations</label><br /> <input id="hikingCheckBox" type="checkbox" name="hikingCheckBox" /><label for="hikingCheckBox">Hiking, cycling and trails</label><br /> <input id="boatingCheckBox" type="checkbox" name="boatingCheckBox" /><label for="boatingCheckBox">Paddling, boating and historic canals</label><br /> <input id="toursCheckBox" type="checkbox" name="toursCheckBox" /><label for="toursCheckBox">Guided tours, events and other activities</label><br /> </div> </div> <div class="col-md-6"> <input id="historyCheckBox" type="checkbox" name="historyCheckBox" /><label for="historyCheckBox">History and culture</label><br /> <input id="conservationCheckBox" type="checkbox" name="conservationCheckBox" /><label for="conservationCheckBox">Wildlife, science and conservation</label><br /> <input id="passesCheckBox" type="checkbox" name="passesCheckBox" /><label for="passesCheckBox">Passes and admission</label><br /> <input id="otherCheckBox" type="checkbox" name="otherCheckBox" /><label for="otherCheckBox">Other, please specify: </label> <input name="otherTextBox" type="text" id="otherTextBox" /> </div> </div> <br /> </fieldset> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="formGroup"> <fieldset> <legend>Preferred official language </legend> <br /> <table id="langRadio"> <tr> <td><span class="langRadio"><input id="langRadio_0" type="radio" name="langRadio" value="EN" checked="checked" /><label for="langRadio_0">English</label></span></td> </tr><tr> <td><span class="langRadio"><input id="langRadio_1" type="radio" name="langRadio" value="FR" /><label for="langRadio_1">French</label></span></td> </tr> </table> </fieldset> </div> <div style="clear: both;"></div> <div> </div> <div id="errorMessage" style="display: none;"> <ul> <li style="color: red;">A network error occurred, please try again later. </li> </ul> </div> </div> </div> <div style="padding-right: 30px;" class="row formGroup terms_box"> <input name="optinbox" type="checkbox" id="optinbox" value="true" required="" /> <span id="optinValidator" class="validator" style="display:none;">This field is required</span> <label for="optinbox" class="normal-font-weight checkbox-label"><span>Yes, I would like to receive seasonal emails about special events, promotions and more from Parks Canada, and I accept the newsletter <a href="http://www.pc.gc.ca/en/termes-terms#p08" target="_blank">terms and conditions</a>.</span> <span style="color: #D3080C;">(required)</span></label> <br /> <input type="submit" name="btnSave" value="Sign up" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;btnSave&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" id="btnSave" class="btn btn-primary" style="margin-top: 18px" /> <input type="hidden" name="hdn_clickValid" id="hdn_clickValid" value="1705472283" /> </div> <script type="text/javascript"> //<![CDATA[ var Page_ValidationSummaries = new Array(document.getElementById("valSum")); var Page_Validators = new Array(document.getElementById("validateEmailTop"), document.getElementById("validateEmailConfirmTop"), document.getElementById("emailCompareValidatorTop"), document.getElementById("validatepostalCodeTop"), document.getElementById("validateoptinboxTop"), document.getElementById("validateEmail"), document.getElementById("customEmailValid"), document.getElementById("validateEmailConfirm"), document.getElementById("emailCompareValidator"), document.getElementById("postalCodeValidator"), document.getElementById("optinValidator")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var valSum = document.all ? document.all["valSum"] : document.getElementById("valSum"); valSum.headertext = "<h2>The form could not be submitted because errors were found.</h2>"; var validateEmailTop = document.all ? document.all["validateEmailTop"] : document.getElementById("validateEmailTop"); validateEmailTop.controltovalidate = "emailBox"; validateEmailTop.focusOnError = "t"; validateEmailTop.errormessage = "<li><a href=\'#emailBox\'>Email – required</a></li>"; validateEmailTop.display = "Dynamic"; validateEmailTop.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; validateEmailTop.initialvalue = ""; var validateEmailConfirmTop = document.all ? document.all["validateEmailConfirmTop"] : document.getElementById("validateEmailConfirmTop"); validateEmailConfirmTop.controltovalidate = "emailBoxConfirm"; validateEmailConfirmTop.focusOnError = "t"; validateEmailConfirmTop.errormessage = "<li><a href=\'#emailBoxConfirm\'>Confirm email – required</a></li>"; validateEmailConfirmTop.display = "Dynamic"; validateEmailConfirmTop.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; validateEmailConfirmTop.initialvalue = ""; var emailCompareValidatorTop = document.all ? document.all["emailCompareValidatorTop"] : document.getElementById("emailCompareValidatorTop"); emailCompareValidatorTop.controltovalidate = "emailBox"; emailCompareValidatorTop.display = "Dynamic"; emailCompareValidatorTop.evaluationfunction = "CompareValidatorEvaluateIsValid"; emailCompareValidatorTop.controltocompare = "emailBoxConfirm"; emailCompareValidatorTop.controlhookup = "emailBoxConfirm"; var validatepostalCodeTop = document.all ? document.all["validatepostalCodeTop"] : document.getElementById("validatepostalCodeTop"); validatepostalCodeTop.controltovalidate = "postalCode"; validatepostalCodeTop.focusOnError = "t"; validatepostalCodeTop.errormessage = "<li><a href=\'#postalCode\'>Postal code – must be a Canadian postal code with A1A 1A1 format</a></li>"; validatepostalCodeTop.display = "Dynamic"; validatepostalCodeTop.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid"; validatepostalCodeTop.validationexpression = "^[a-zA-Z][0-9][a-zA-Z]( )[0-9][a-zA-Z][0-9]$"; var validateoptinboxTop = document.all ? document.all["validateoptinboxTop"] : document.getElementById("validateoptinboxTop"); validateoptinboxTop.focusOnError = "t"; validateoptinboxTop.errormessage = "<li><a href=\'#optinbox\'>Yes, I’d like to receive emails – required</a></li>"; validateoptinboxTop.display = "Dynamic"; validateoptinboxTop.evaluationfunction = "CustomValidatorEvaluateIsValid"; validateoptinboxTop.clientvalidationfunction = "optinBoxValid"; var validateEmail = document.all ? document.all["validateEmail"] : document.getElementById("validateEmail"); validateEmail.controltovalidate = "emailBox"; validateEmail.focusOnError = "t"; validateEmail.errormessage = "This field is required"; validateEmail.display = "Dynamic"; validateEmail.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; validateEmail.initialvalue = ""; var customEmailValid = document.all ? document.all["customEmailValid"] : document.getElementById("customEmailValid"); customEmailValid.controltovalidate = "emailBox"; customEmailValid.focusOnError = "t"; customEmailValid.errormessage = "Enter a valid email address"; customEmailValid.display = "Dynamic"; customEmailValid.evaluationfunction = "CustomValidatorEvaluateIsValid"; customEmailValid.clientvalidationfunction = "validateEmailEntry"; var validateEmailConfirm = document.all ? document.all["validateEmailConfirm"] : document.getElementById("validateEmailConfirm"); validateEmailConfirm.controltovalidate = "emailBoxConfirm"; validateEmailConfirm.focusOnError = "t"; validateEmailConfirm.errormessage = "This field is required"; validateEmailConfirm.display = "Dynamic"; validateEmailConfirm.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; validateEmailConfirm.initialvalue = ""; var emailCompareValidator = document.all ? document.all["emailCompareValidator"] : document.getElementById("emailCompareValidator"); emailCompareValidator.controltovalidate = "emailBox"; emailCompareValidator.display = "Dynamic"; emailCompareValidator.evaluationfunction = "CompareValidatorEvaluateIsValid"; emailCompareValidator.controltocompare = "emailBoxConfirm"; emailCompareValidator.controlhookup = "emailBoxConfirm"; var postalCodeValidator = document.all ? document.all["postalCodeValidator"] : document.getElementById("postalCodeValidator"); postalCodeValidator.controltovalidate = "postalCode"; postalCodeValidator.focusOnError = "t"; postalCodeValidator.errormessage = "The postal code must be a Canadian postal code with A1A 1A1 format"; postalCodeValidator.display = "Dynamic"; postalCodeValidator.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid"; postalCodeValidator.validationexpression = "^[a-zA-Z][0-9][a-zA-Z]( )[0-9][a-zA-Z][0-9]$"; var optinValidator = document.all ? document.all["optinValidator"] : document.getElementById("optinValidator"); optinValidator.focusOnError = "t"; optinValidator.errormessage = "This field is required"; optinValidator.display = "Dynamic"; optinValidator.evaluationfunction = "CustomValidatorEvaluateIsValid"; optinValidator.clientvalidationfunction = "validate_optinbox"; //]]> </script> <script type="text/javascript"> //<![CDATA[ (function(id) { var e = document.getElementById(id); if (e) { e.dispose = function() { Array.remove(Page_ValidationSummaries, document.getElementById(id)); } e = null; } })('valSum'); var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } document.getElementById('validateEmailTop').dispose = function() { Array.remove(Page_Validators, document.getElementById('validateEmailTop')); } document.getElementById('validateEmailConfirmTop').dispose = function() { Array.remove(Page_Validators, document.getElementById('validateEmailConfirmTop')); } document.getElementById('emailCompareValidatorTop').dispose = function() { Array.remove(Page_Validators, document.getElementById('emailCompareValidatorTop')); } document.getElementById('validatepostalCodeTop').dispose = function() { Array.remove(Page_Validators, document.getElementById('validatepostalCodeTop')); } document.getElementById('validateoptinboxTop').dispose = function() { Array.remove(Page_Validators, document.getElementById('validateoptinboxTop')); } document.getElementById('validateEmail').dispose = function() { Array.remove(Page_Validators, document.getElementById('validateEmail')); } document.getElementById('customEmailValid').dispose = function() { Array.remove(Page_Validators, document.getElementById('customEmailValid')); } document.getElementById('validateEmailConfirm').dispose = function() { Array.remove(Page_Validators, document.getElementById('validateEmailConfirm')); } document.getElementById('emailCompareValidator').dispose = function() { Array.remove(Page_Validators, document.getElementById('emailCompareValidator')); } Sys.Application.add_init(function() { $create(Sys.Extended.UI.AutoCompleteBehavior, {"delimiterCharacters":"","id":"emailBoxConfirm_AutoCompleteExtender","serviceMethod":"ValidateEmail","servicePath":"../Views/SignUp/Signup_EN.aspx","useContextKey":true}, null, null, $get("emailBox")); }); document.getElementById('postalCodeValidator').dispose = function() { Array.remove(Page_Validators, document.getElementById('postalCodeValidator')); } document.getElementById('optinValidator').dispose = function() { Array.remove(Page_Validators, document.getElementById('optinValidator')); } //]]> </script> </form> <div style="clear: both;"></div> <div id="rulesDialog" title="Contest rules and regulations"> <br /> <h5>PARKS CANADA<br /> <i>Parks Canada Newsletter Contest</i> </h5> <hr style="height: 2px; border-width: 0; color: gray; background-color: gray" /> <h5>OFFICIAL CONTEST RULES AND REGULATIONS</h5> <br /> <h5>(a) OVERVIEW</h5> <br /> Organizer: This “Parks Canada Newsletter Contest” is organized by Parks Canada Agency (hereinafter referred to as “Parks Canada”). <br /> <br /> Prize Provider(s): Prizes provided by Parks Canada. <br /> <br /> Start/End Dates: Contest starts at 12:00 p.m., noon, Eastern Time on April 11, 2022, and ends at 11:59 p.m. Eastern Time on May 31, 2022 (hereinafter referred to as “Contest Period”) <br /> <br /> Prize(s): Fifty (50) prizes are available to be won and will be awarded after the Contest Period ends on May 31, 2022. <br /> <br /> Each prize consists of one (1) Parks Canada Family/Group Discovery Passes. The Family/Group Discovery Pass provides admission to over eighty (80) Parks Canada administered places for up to seven (7) individuals arriving in the same vehicle. It is valid for twelve (12) consecutive months beginning from the date of winner confirmation. Each of the fifty (50) prizes is subject to the Discovery Pass terms and conditions. <br /> <br /> The total retail value of the fifty (50) prizes (excluding taxes) is $6,917.67. <br /> <br /> <h5>(b) ELIGIBILITY</h5> <br /> Contest is open to all residents of Canada, who are over the age of majority in the province or territory in which they reside. The following persons are not eligible to enter the Contest or win a prize: employees, officers, directors, or representatives of Parks Canada, and the parents, siblings and children of, and persons domiciled with, such individuals; anyone under the age of majority in the province or territory in which they reside; any of Parks Canada’s agents, corporate parent, affiliated or related companies, subsidiaries, divisions, promotional and advertising agencies and administrators. <br /> <br /> <h5>(c) HOW TO ENTER; NO PURCHASE NECESSARY</h5> <br /> Eligible entrants can participate in the Contest using one of two methods: <ul> <li>(I) If already subscribed to the Parks Canada Newsletter, eligible entrants can update their information and preferences by clicking on the “Update my preferences now!” button found in the April newsletter, or click on “Update your information” link, available in any newsletter footer; or </li> <li>(II) Otherwise, eligible entrants can sign up to the Parks Canada Newsletter at <a href="http://www.parkscanada.gc.ca/contest">www.parkscanada.gc.ca/contest</a> and accept the newsletter terms and conditions. <br /> <br /> During the Contest Period, eligible entrants must fill out all required fields and check off the box stating that they have read and agree to comply with these Official Contest Rules and Regulations; and then enter the Contest by clicking the “Update” or “Sign Up” button. </li> </ul> <br /> <br /> No purchase is necessary to be eligible to enter, participate or win. <br /> <br /> An eligible entrant is entitled to submit one (1) (but not more than one) entry to the Contest. <br /> <br /> <h5>(d) PRIZES</h5> <br /> Fifty (50) prizes are available to be won in this Contest. See above under Rule 1 (a) and below under Rule 1 (e) for more prize details. <br /> <br /> All prizes must be accepted as awarded. No substitution for any awarded prize may be requested by prize winners nor permitted by Parks Canada. <br /> <br /> <h5>(e) PRIZE WINNERS</h5> <br /> Prizes: By 10:30 a.m. Eastern Time on June 3, 2022, fifty (50) eligible entrants will be randomly drawn electronically and identified by Parks Canada as possible prize winners (“Possible Winners”). Parks Canada will send an email to each Possible Winner at the entrant’s email address as supplied on the newsletter form. <br /> <br /> Fifty (50) Possible Winners will be drawn in this way. The chance of an eligible entry being drawn depends on the total number of eligible entries that qualify for the prize and that are received during the Contest Period. <br /> <br /> If an eligible entrant who is identified and contacted by Parks Canada as a Possible Winner fails to contact Parks Canada by email, as requested, within two (2) business days after receiving notification that his/her name was drawn by Parks Canada as a Possible Winner of that prize, she/he will be disqualified and another eligible entrant will be randomly drawn electronically and selected as a Possible Winner. All selections of Possible Winners will be based on these Official Contest Rules and Regulations until such time as fifty (50) winners have been confirmed, or until there are no more eligible entries, whichever comes first. <br /> <br /> Parks Canada will not be responsible for failed attempts to contact a Possible Winner. <br /> <br /> <h5>(f) TERMS AND CONDITIONS GOVERNING PRIZES AND DRAW</h5> <br /> Discovery Pass terms of use: <ul> <li>A Discovery Pass provides the holder with unlimited admission to over 80 participating national parks, national marine conservation areas and national historic sites. For a full list of destinations, visit <a href="http://www.pc.gc.ca/en/voyage-travel/admission/particip#disco">www.pc.gc.ca/en/voyage-travel/admission/particip#disco.</a></li> <li>The Discovery Pass is valid for a full 12 months from the date the winner is confirmed, expiring on the last day of the month. As an example, if a winner is confirmed on June 5, 2022, the Discovery Pass will be valid until June 30, 2023.</li> <li>The Family/Group Discovery Pass provides admission for up to seven (7) individuals arriving in the same vehicle.</li> <li>The Discovery Pass includes all the privileges and services that normally come with a daily admission pass or permit. Services such as Canadian Rockies Hot Springs admission, backcountry overnight use, guided tours or parking that normally carry a separate fee are excluded. Camping fees are not included. Family/group passes are not valid for commercial groups.</li> <li>The Discovery Pass must be signed by the pass holder and is void if sold or transferred.</li> <li>The pass holder must be present when using the pass.</li> <li>The pass must be hung from the rear-view mirror with the date facing forward or placed on the driver side dashboard with the date facing up. If arriving by foot, motorcycle, boat or transit, the Discovery Pass must be presented in person upon arrival. When visiting a national historic site, the Discovery Pass must be presented upon arrival.</li> <li>The Discovery Pass must be kept in a safe place. Parks Canada is not liable for any loss. </li> </ul> <br /> <br /> Parks Canada Newsletter terms and conditions <br /> <br /> All email communications are done in accordance with Canada's anti-spam legislation (CASL), the Privacy Act and other applicable laws. Your consent is required for your email address to be used to provide you with information for promotional purposes. <br /> <br /> To respect your privacy and protect you, Parks Canada collects the minimum amount of personal information needed to administer the Parks Canada Newsletter. Your personal information will only be used to send you promotional emails about Parks Canada events and activities, special offers, trip planning news and more. In critical situations, your information could also be used to send you informational emails that would greatly impact your visit to our places (e.g. closures). <br /> <br /> The Parks Canada Newsletter is administered by a third-party provider. This third-party provider temporarily shares subscriber email addresses with a service provider to send the newsletter. Upon completion of this task, the service provider permanently deletes all information as soon as the newsletter is sent. Your information will not be disclosed to other parties for any other purposes outside of administering the newsletter. <br /> <br /> For full Parks Canada Newsletter terms and conditions, visit <a href="http://www.pc.gc.ca/en/termes-terms#p08">www.pc.gc.ca/en/termes-terms#p08</a>. <br /> <br /> Other Terms and Conditions: <br /> <br /> Parks Canada will not be in any way responsible (and for greater certainty, the prizes may be forfeited and Parks Canada is not obligated to offer any substitute prizing in its place) in the event that the Parks Canada Discovery Pass cannot be used by the confirmed winner for any reason whatsoever (including, without limitation, due to illness or health risks, or any governmental or health authority orders, measures, directives or guidance in response to such illness or risks, such as, without limitation, those that may be implemented to mitigate COVID-19 transmission, or due to any other cause of any kind or nature whatsoever beyond the commercially reasonable control of Parks Canada). <br /> <br /> Parks Canada shall not be responsible for any delay, postponement, suspension or cancellation of any visitor service or offer. Prize winners will not be compensated in the event of such delay, postponement, suspension or cancellation. <br /> <br /> Parks Canada reserves the right to substitute for any prize an alternate prize of equal or greater dollar value. <br /> <br /> <h5>(g) DISQUALIFICATION</h5> <br /> Parks Canada, in its sole discretion, may disqualify any individual who attempts to undermine the legitimate operation of the Contest by tampering with any website mechanism, or who acts in a disruptive manner, or violates these Official Contest Rules and Regulations. For any attempt by an entrant to damage or undermine the legitimate operation of the Contest, Parks Canada reserves the right to disqualify such entrant and seek remedies and damages (including legal fees) from any such participant to the fullest extent permitted by law. Parks Canada ’s failure to enforce any terms of these Official Contest Rules and Regulations shall not constitute a waiver of that provision. <br /> <br /> <h5>(h) LIMITATION OF LIABILITY</h5> <br /> Parks Canada is excluded from all liability for any personal injury, loss, or damage of whatever kind (including loss of data) caused directly or indirectly, in whole or in part, from downloading any material from Parks Canada’s Contest Websites, whether or not the material was prepared by Parks Canada or a third-party, and whether or not the material is connected to Parks Canada’s websites by a hypertext link. Parks Canada takes no responsibility for the content of third-party websites which may be linked to Parks Canada’s Contest Websites by a hypertext link. <br /> <br /> Parks Canada reserves the right to cancel, suspend or modify the Contest if fraud, technical failures, or any other factor beyond Parks Canada’s reasonable control impairs the administration or integrity of the Contest, as determined by Parks Canada in its sole discretion. In the event of such impairment, Parks Canada may choose alternate Possible Winners from all eligible entries received as of the time of impairment. <br /> <br /> <h5>(i) GENERAL</h5> <br /> By entering and participating in the Contest, each entrant agrees to abide by these Official Contest Rules and Regulations and to release and hold harmless Parks Canada and its affiliates, directors, officers, employees and agents from any liability for damage, injury, death, loss, cancellation or other liability arising from the entrant’s acceptance or use of a prize or substituted prize or having participated in this Contest including, without limitation, claims based on publicity rights, defamation, or invasion of privacy, or from the misuse or malfunction of such prize or substitute prize. Parks Canada and its affiliates, directors, officers, employees and agents assume no liability for losses incurred as a result of a cancellation of the Contest or for any reason whatsoever or for events occurring after the award of a prize. All such losses or expenses will be borne by each individual prize winner. The Contest is subject to all applicable federal, provincial, and local laws and may be void where prohibited by the law of the entrant’s place of residence. Decisions of Parks Canada regarding all aspects of the Contest are final. <br /> <br /> <h5>(j) SKILL-TESTING QUESTION: WINNER’S DECLARATION AND RELEASE</h5> <br /> Before being confirmed and declared an actual prize winner, each Possible Winner must have answered correctly, without assistance, the mathematical, skill-testing question which will be provided as part of Parks Canada’s Declaration and Release Form (the “Release Form”). <br /> <br /> The Possible Winners for the prizes will be required to sign the Release Form confirming their compliance with these Official Contest Rules and Regulations, acceptance of the prize as-awarded, and releasing Parks Canada its affiliated and related companies, advertising and promotional agencies, and their respective shareholders, directors, officers, employees, agents, representatives, successors and assigns (collectively, the “Released Parties”) from any and all liability in connection with this Contest and the prize as-awarded. The completed Release Form must be returned to Parks Canada within the time period specified on the Release Form or the prize will be forfeited. Prizes will be delivered (or communicated) to the successful prize winners within twenty-four (24) hours of Parks Canada’s confirmation that; (i) the Possible Winner is eligible to be awarded the prize in question; (ii) the Possible Winner has correctly answered the skill-testing question [see Rules 1 (j) above]; and (iii) Parks Canada has received the fully-completed Release Form executed by the Possible Winner. <br /> <br /> <h5>(k) WINNER’S CONSENT</h5> <br /> No communication will be entered into except with Possible Winners. By entering and participating in the Contest, the prize winners consent to the use of: her/his/their name; address (city and province or territory); comments attributable to him/her/them pertaining to the Contest, a prize or prizes, and/or Parks Canada. No remuneration in connection with any publicity relating to the Contest, carried out by or on behalf of Parks Canada in any manner whatsoever including, without limitation, print, broadcast, the internet and social media is offered to or required by any entrant or prize winner. <br /> <br /> <h5>(l) ENTRIES</h5> <br /> Parks Canada does not assume any responsibility and is not responsible for (i) the incorrect or inaccurate capture of entry information and entries that fail to comply with these Official Contest Rules and Regulations; (ii) any loss, or damages caused by an awarded prize or the Contest itself; or (iii) any failure of Parks Canada’s Contest Websites during the Contest Period, including any problems, human or technical, printing errors, lost, delayed, garbled data or transmissions, omissions, interruptions, deletions, defects or failures of any telephone or community lines, or technical malfunction of any computer on-line systems, servers, access providers, computer equipment, software, failure of any entry to be received on account of technical problems or traffic congestion on the Internet or at any website, or any combination thereof including any injury or damage to an entrant’s or any other person’s computer related to or resulting from downloading any material connected to the Contest. Entry material/data that has been tempered with or altered is void. <br /> <br /> <h5>(m) INTERPRETING THESE RULES</h5> <br /> All issues and questions concerning the construction, validity, interpretation, and enforceability of these Official Contest Rules and Regulations, or the respective rights and obligations of the prize claimants and Parks Canada in connection with the Contest, shall be governed by, and construed in accordance with (i) the laws of the Province of Québec and the laws of Canada applicable therein with respect to the residents of the Province of Québec, and (ii) the laws of the Province of Ontario and the laws of Canada applicable therein with respect to residents of the other Canadian provinces and territories, without regard to conflicts of law principles. Any attempt by a participant or any other individual to deliberately damage any website or undermine the legitimate operation of the Contest could be a violation of criminal and civil laws and should such an attempt be made; Parks Canada reserves the right to seek damages from any such person to the fullest extent permitted by law. The contest is subject to all applicable federal, provincial and municipal laws. <br /> <br /> <h5>(n) SUSPENDING/CANCELLING/AMENDING THE CONTEST</h5> <br /> Parks Canada reserves the right, with the consent of the Régie des alcools, des courses et des jeux, to terminate or suspend the Contest or to amend these Official Contest Rules and Regulations at any time and in any way, without prior notice, for any reason whatsoever. Without limiting the foregoing, if for any reason the Contest is not capable of running or being completed, as originally planned (for example, as a result of tampering or infection by a computer virus) Parks Canada reserves the right, with the consent of the Régie des alcools, des courses et des jeux, to cancel the Contest. <br /> <br /> <h5>(o) LITIGATION RESPECTING THE CONTEST</h5> <br /> Any litigation by residents of the Province of Québec respecting the conduct or organization of a publicity Contest may be submitted to the Régie des alcools, des courses et des jeux for a ruling. Any such litigation respecting the awarding of a prize to any resident of the Province of Québec may be submitted to the Régie des alcools, des courses et des jeux only for the purpose of helping the parties reach a settlement. <br /> <br /> <h5>(p) PRIVACY</h5> <br /> Parks Canada respects every entrant’s right to privacy. By entering this Contest, each entrant is deemed to automatically have provided his/her consent that personal information collected from entrants will only be used by Parks Canada to administer the Contest and in order to provide the entrant with information regarding upcoming promotions and/or events involving Parks Canada, or as otherwise provided in these Official Contest Rules and Regulations. Any conflict or discrepancy between the foregoing provisions of this Rule 1(p) and any applicable laws or regulations of Canada, or the provinces or territories of Canada, with respect to privacy, shall be resolved in favor of such applicable laws or regulations. <br /> <br /> </div> </div> </div> <div id="privacyModal" class="modal fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title">Privacy Statement</h4> </div> <div class="modal-body"> <p> The Sponsor respects every entrant’s right to privacy. By entering this Contest, each entrant is deemed to automatically have provided his/her consent that personal information collected from entrants will only be used by the Sponsor to administer the Contest and in order to provide the entrant with information regarding upcoming promotions and/or events involving the Sponsor, or as otherwise provided in these Official Contest Rules and Regulations. Any conflict or discrepancy between the foregoing provisions of this Rule 1(p) and any applicable laws or regulations of Canada, or the provinces or territories of Canada, with respect to privacy, shall be resolved in favour of such applicable laws or regulations. </p> </div> <div class="modal-footer"> <button type="button" class="basicButton" data-dismiss="modal">Close</button> </div> </div> </div> </div> </div> </div> </body> <footer> <div id="footerWrapper"> <!-- Gov links depend on language --> <div id="footer" role="navigation" aria-label="Content Information"> <h3 class="screenReaderText">Quick links</h3> <div id="footerRow0"> <div id="dt_modified"><p>Date modified: 2024-09-03</p></div> <div id="gc_tctr"> </div> </div> <div id="footerRow1"> <div id="footerAboutUsSection" class="section"> <div class="header"> <a class="toggle" href="javascript:toggleFooterLinks('#footerAboutUsSection');" id="footerAboutUsSectionBtn" role="button"><span id="footerAboutUSection_div_ACCE_Label" class="spanacce">Customer Service</span></a> <h4>About Parks Canada</h4> </div> <ul> <li><a href="https://www.pc.gc.ca/en/agence-agency/mandat-mandate">Mandate and Charter</a></li> <li><a href="https://pm.gc.ca/en/cabinet/honourable-steven-guilbeault" rel="&quot;external&quot;">Our Minister</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/mandat-mandate/dg_ceo">Message from the President and Chief Executive Officer</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/aa-ia">Indigenous relations at Parks Canada</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/partenaires-partners">Partners and collaborators</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/bib-lib/plans">Strategies and plans</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/bib-lib/rapports-reports">Reports</a></li> </ul> </div><div id="footerExploreSection" class="section"> <div class="header"> <a class="toggle" href="javascript:toggleFooterLinks('#footerExploreSection');" id="footerExploreSectionBtn" role="button"><span id="footerExploreSection_div_ACCE_Label" class="spanacce">Explore</span></a> <h4>Explore</h4> </div> <ul> <li class="regular-footer-link" ><a id="footerPlanYourVisitLink" href="http://www.pc.gc.ca/en/voyage-travel">Plan your visit</a></li> <li class="unsubscribe-footer-link hidden" ><a id="footerPlanYourVisitLink_unsubscribe" href="https://www.pc.gc.ca/en/voyage-travel?utm_source=eBulletin_en&utm_medium=unsubcribe_foot">Plan your visit</a></li> <li><a id="footerReservetionServicesLink" href="https://reservation.pc.gc.ca/">Reservations</a></li> <li><a id="footerPassesandpermitsLink" href="https://www.pc.gc.ca/en/voyage-travel/admission">Passes, permits and fees</a></li> <li><a id="footerOfficialMerchandiseLink" href="http://www.parkscanadashop.ca/">Official merchandise</a></li> </ul> </div><div id="footerContactUsSection" class="section"> <div class="header"> <a class="toggle" href="javascript:toggleFooterLinks('#footerContactUsSection');" id="footerContactUsSectionBtn" role="button"><span id="footerContactUsSection_div_ACCE_Label" class="spanacce">Explore</span></a> <h4>Transparency</h4> </div> <ul> <li><a href="https://parks.canada.ca/agence-agency/dp-pd">Proactive disclosure</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/dp-pd/baiprp-atipo">Access to information and privacy</a></li> <li><a href="https://www.pc.gc.ca/en/termes-terms">Terms and conditions</a></li> <li><a href="https://www.canada.ca/en/government/system/consultations/consultingcanadians.html">Consultations</a></li> </ul> </div><div id="footerConnectedSection" class="section"> <div class="header"> <a class="toggle" href="javascript:toggleFooterLinks('#footerConnectedSection');" id="footerConnectedSectionBtn" role="button"><span id="footerConnectedSection_div_ACCE_Label" class="spanacce">Explore</span></a> <h4>Stay connected</h4> </div> <ul> <li class="regular-footer-link"><a href="https://www.pc.gc.ca/en/multimedia/apps">Parks Canada App</a></li> <li class="regular-footer-link"><a href="http://www.facebook.com/ParksCanada" rel="&quot;external&quot;">Facebook</a></li> <li class="regular-footer-link"><a href="https://www.instagram.com/parks.canada/" rel="&quot;external&quot;">Instagram</a></li> <li class="regular-footer-link"><a href="http://twitter.com/ParksCanada" rel="&quot;external&quot;">Twitter</a></li> <li class="regular-footer-link"><a href="https://www.youtube.com/user/ParksCanadaAgency?sub_confirmation=1&utm_source=eBulletin_en&utm_medium=unsubcribe_body" rel="&quot;external&quot;">YouTube</a></li> <li class="unsubscribe-footer-link hidden"><a href="https://www.pc.gc.ca/en/multimedia/apps?utm_source=eBulletin_en&utm_medium=unsubcribe_foot">Apps</a></li> <li class="unsubscribe-footer-link hidden"><a href="https://www.facebook.com/ParksCanada?utm_source=eBulletin_en&utm_medium=unsubcribe_foot " rel="&quot;external&quot;">Facebook</a></li> <li class="unsubscribe-footer-link hidden"><a href="https://www.instagram.com/parks.canada/?utm_source=eBulletin_en&utm_medium=unsubcribe_foot" rel="&quot;external&quot;">Instagram</a></li> <li class="unsubscribe-footer-link hidden"><a href="https://twitter.com/ParksCanada?utm_source=eBulletin_en&utm_medium=unsubcribe_foot" rel="&quot;external&quot;">Twitter</a></li> <li class="unsubscribe-footer-link hidden"><a href="https://www.youtube.com/user/ParksCanadaAgency?sub_confirmation=1&utm_source=eBulletin_en&utm_medium=unsubcribe_foot" rel="&quot;external&quot;">YouTube</a></li> <li><a href="http://pcan-ebulletin.ca/en/signup" rel="&quot;external&quot;">Newsletter</a></li> <li><a href="https://www.pc.gc.ca/en/agence-agency/courriel-email">Contact us</a></li> </ul> </div> </div> </div> <div id="gc_footer"> <div id="footerRow2"> <div id="gc_gcft"> <h4 class="screenReaderText">Government of Canada quick links</h4> <ul> <li><a href="http://healthycanadians.gc.ca/index-eng.php"><span>Health</span></a></li> <li><a href="https://travel.gc.ca/"><span>Travel</span></a></li> <li><a href="http://www.servicecanada.gc.ca/eng/home.shtml"><span>Service Canada</span></a></li> <li><a href="http://www.jobbank.gc.ca/intro-eng.aspx"><span>Jobs</span></a></li> <li><a href="https://www.canada.ca/en/index.html"><span>Canada.ca</span></a></li> </ul> </div> </div> </div> </div> </footer> </html>

Pages: 1 2 3 4 5 6 7 8 9 10