nsmortgagebroker.ca Open in urlscan Pro
20.151.198.52  Public Scan

URL: https://nsmortgagebroker.ca/
Submission: On November 04 via api from BE — Scanned from CA

Form analysis 1 forms found in the DOM

POST ./

<form method="post" action="./" onsubmit="javascript:return WebForm_OnSubmit();" id="form1">
  <div class="aspNetHidden">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
      value="/wEPDwUJNjE5Mzk4NTU5D2QWAgIBD2QWBAIBD2QWAmYPZBYEZg8WAh4LXyFJdGVtQ291bnQCBBYIZg9kFgRmDxUFBTE0MDU5ATAJcGFnZS1pdGVtCy9hcHBseS5hc3B4CUFwcGx5IE5vd2QCAQ8WBB8AZh4HVmlzaWJsZWhkAgEPZBYEZg8VBQUxNDA2MAEwDHNlY3Rpb24taXRlbQYjYWJvdXQIQWJvdXQgTWVkAgEPFgQfAGYfAWhkAgIPZBYEZg8VBQUxNDA2MQEwDHNlY3Rpb24taXRlbQojbW9ydGdhZ2VzCU1vcnRnYWdlc2QCAQ8WBB8AZh8BaGQCAw9kFgRmDxUFBTE0MDY3ATAbc2VjdGlvbi1pdGVtIGNvbnRhY3QtYnV0dG9uCCNjb250YWN0CkNvbnRhY3QgTWVkAgEPFgQfAGYfAWhkAgEPFgIfAWhkAg8PZBYCZg9kFgpmDw9kFgIeC3BsYWNlaG9sZGVyBQZOYW1lICpkAgEPD2QWBB4FdGl0bGUFI1BsZWFzZSBlbnRlciBhIHZhbGlkIGUtbWFpbCBhZGRyZXNzHwIFB0VtYWlsICpkAgIPD2QWAh8CBQdQaG9uZSAqZAIHDw9kFgIfAgUHTWVzc2FnZWQCCA8PFgIeBFRleHQFBlN1Ym1pdGRkZJdTvzrv3OZXmwZDZNM1yMvts5Hqe12ScAdndkFQ3AA+">
  </div>
  <script src="/WebResource.axd?d=HJTKecI0jzhpdTBlYtZcoptsalNLPWjeQUbwbEhh6_U5YDzOB1RMzJ1-_zn_w936mYSesc6vh8tyv4s9QNDaRXecV2SYSXGToZxasV_ht741&amp;t=638459572569584809" type="text/javascript"></script>
  <script type="text/javascript">
    //<![CDATA[
    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="CA0B0334">
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
      value="/wEdAAbXgHsREGR37JH+oE/fYn17exCaHWKB2HfgEHnQuSIzKF2yeLu0GgBG3+Xccsz8oktWVWzn++hU2ngaQdRSG1VrVijV4VG/yvKojHZtmJc9Sqib+rxNp0rkGkgsl3sh9A5eKx3cx56RqEW85WT758XBnAvrPC5PpEQzUdU7ypuVog==">
  </div>
  <span id="lblFlashMessage" class="flash-message"></span>
  <header id="home">
    <!-- Logo image -->
    <div id="header-logo">
      <a href="/">
                    <img src="/assets/images/logos/tmg-logo.png" alt="">                   
                </a>
      <div id="top-right-image" class="d-none"></div>
    </div>
    <!-- Social media links -->
    <div id="header-social">
      <a class="social-email" href="mailto:emily.fraser@mortgagegroup.com"><i class="fa fa-envelope" aria-hidden="true"></i></a>
      <a class="social-mortgage-application" href="/apply.aspx" title="Mortgage Application"><i class="fa fa-file-text" aria-hidden="true"></i></a>
      <a class="social-faq" href="https://nsmortgagebroker.ca/faq.aspx" title="FAQ"><i class="fa fa-question" aria-hidden="true"></i></a>
    </div>
    <!-- Bylines -->
    <div id="header-bylines">
      <div id="header-byline-1" x-ms-format-detection="none"> Let's chat: <a href="tel:902-553-0390">902-553-0390</a>
      </div>
    </div>
    <div class="clear-both"></div>
  </header>
  <script>
    $(function() {
      $(".search-input").on("focus", function() {
        if ($(getSearchBarTag()).val() === "") {
          $(".search-content").hide()
          clearSearchLinks();
          return;
        }
        $(".search-content").removeClass("d-none");
        $(".search-content").show();
      })
      $(".search-input").on("focusout", function() {
        if ($(".search-content").children().length === 0 || !isSearchContentHovered()) {
          $(".search-content").hide();
        }
      })
      $(".search-input").on("input", onSearchTextChange).on("keypress", function(e) { // Eat the "enter" key, so it doesn't bubble up to the newsletter signup form
        if ((e.keyCode || e.which) === 13) {
          e.preventDefault();
        }
      });
      $(".mobile-menu-head").css({
        display: "flex"
      });
      $(".search-icon-mobile").css({
        "padding": "0px",
        "margin-top": "7px"
      })
      updateResponsiveSearchElement();
    })

    function isDesktop() {
      return innerWidth > 600;
    }

    function getResponsiveTag() {
      if (isDesktop()) {
        return ".search-desktop";
      } else {
        return ".search-mobile";
      }
    }

    function getSearchBarTag() {
      return ".search-input" + getResponsiveTag();
    }
    //---------------------------------
    // Search Visuals 
    //---------------------------------
    function hideSearchBar() {
      $(getSearchBarTag()).animate({
        width: "0px",
        opacity: "0"
      }, {
        done: function() {
          $(".nav-tabs").children().not(".search-button").show()
        }
      })
    }

    function showSearchBar() {
      $(".nav-tabs").children().not(".search-button, .contact-button").hide()
      $(getSearchBarTag()).animate({
        width: getSearchBarWidth(),
        opacity: "1"
      }, {
        done: function() {
          this.focus()
        }
      })
    }

    function getSearchBarWidth() {
      if (isDesktop()) {
        return (innerWidth - 377) + "px";
      } else {
        return "67%";
      }
    }

    function toggleSearchBar(event) {
      if (!isDesktop()) $('nav#navigation > ul').slideUp();
      if ($(getSearchBarTag()).is(":animated")) return;
      if (isSearchVisible()) {
        hideSearchBar();
      } else {
        showSearchBar();
      }
    }

    function isSearchVisible() {
      return Number($(getSearchBarTag()).css("opacity")) > 0.5;
    }

    function isSearchFilled() {
      return $(getSearchBarTag()).val() === "";
    }

    function isSearchContentHovered() {
      return $(".search-content").children().toArray().some(function(element) {
        return element.matches(":hover");
      });
    }

    function updateOtherSearchBarText() {
      if (isDesktop()) {
        var $searchBar = $(".search-input.search-desktop");
        var $destinationSearchBar = $(".search-input.search-mobile");
      } else {
        var $searchBar = $(".search-input.search-mobile");
        var $destinationSearchBar = $(".search-input.search-desktop");
      }
      $destinationSearchBar.val($searchBar.val());
    }

    function updateResponsiveSearchElement() {
      if (isDesktop()) {
        if (isSearchVisible()) {
          $(".search-bar").width(innerWidth - 403)
        }
        $(".search-desktop").show()
        $(".search-mobile").hide()
      } else {
        $(".search-desktop").hide()
        $(".search-mobile").show()
        $(".nav-tabs").children().not(".search-button").show()
      }
      $(".search-content").hide()
    }
    document.body.onresize = updateResponsiveSearchElement
    //---------------------------------
    // Search Links
    //---------------------------------
    function addSearchLink(text, href) {
      var link = document.createElement("a")
      link.href = href;
      link.text = text;
      link.style.color = "#63666a"
      $(".search-content").append(link);
    }

    function clearSearchLinks() {
      var ddlElements = $(".search-content").children();
      ddlElements.remove();
    }

    function showSearchLoading() {
      var loading = document.createElement("h");
      loadingIcon = document.createElement("i");
      loadingIcon.classList.add("fa", "fa-cog", "fa-spin");
      loading.append("Loading...")
      loading.append(loadingIcon);
      $(".search-content").append(loading);
    }

    function showNoSearchResults() {
      var noResults = document.createElement("h");
      noResults.append("No Results.");
      $(".search-content").append(noResults);
    }
    //---------------------------------
    // Search Functionality
    //---------------------------------
    function onSearchTextChange() {
      if ($(getSearchBarTag()).val() === "") {
        $(".search-content").hide();
        clearSearchLinks();
        return;
      }
      $(".search-content").show();
      clearSearchLinks();
      showSearchLoading();
      updateOtherSearchBarText();
      var uri = "https://nsmortgagebroker.ca/BWSProcessUpdates.asmx/GetSearchData"; //post url for search
      var dataObj = {
        txt: $(getSearchBarTag()).val().toLowerCase()
      };
      if (!$.support.cors) {
        var xdr = new XDomainRequest();
        xdr.onerror = function() {
          onSearchFailure();
        };
        xdr.onload = function() {
          onSearchSuccess(JSON.parse(xdr.responseText), '', null);
        };
        xdr.open("POST", uri);
        xdr.send(JSON.stringify(dataObj));
      } else {
        $.ajax({
          type: "POST",
          url: uri,
          data: JSON.stringify(dataObj),
          contentType: "application/json; charset=utf-8",
          dataType: "json",
          success: onSearchSuccess,
          error: onSearchFailure
        });
      }
    }

    function onSearchSuccess(data) {
      clearSearchLinks();
      let results = JSON.parse(data.d)
      if (results.length === 0) {
        showNoSearchResults();
        return;
      }
      results.forEach(function(result, index) {
        addSearchLink(result.Title, "https://nsmortgagebroker.ca" + result.Url)
      })
    }

    function onSearchFailure(exception) {
      console.error(exception);
      hideSearchLoading();
      showNoSearchResults();
    }
  </script>
  <nav id="navigation" class="fixedsticky fixedsticky-off">
    <div class="mobile-menu-head search-mobile" style="display: none;">
      <a href="#"><i class="fa fa-bars" aria-hidden="true"></i> Home</a>
      <input class="search-bar-mobile search-input search-mobile" placeholder="Loading..." style="display: none;">
      <div id="ddlSearchMobile" class="search-content col text-left card-body d-none text-muted search-mobile search-content-mobile fixedsticky fixedsticky-off" style="display: none;"></div>
      <a class="search-icon-mobile" onclick="toggleSearchBar(event)" style="padding: 0px; margin-top: 7px;"><i class="fa fa-search search-icon search-mobile" aria-hidden="true" style="display: none;"></i></a>
    </div>
    <ul class="nav nav-tabs" role="tablist">
      <li class="active">
        <a href="#home">Home</a>
      </li>
      <li id="menuitem-14059" data-page-id="0" class="page-item"><a href="/apply.aspx">Apply Now</a>
      </li>
      <li id="menuitem-14060" data-page-id="0" class="section-item"><a href="#about">About Me</a>
      </li>
      <li id="menuitem-14061" data-page-id="0" class="section-item"><a href="#mortgages">Mortgages</a>
      </li>
      <li id="menuitem-14067" data-page-id="0" class="section-item contact-button"><a href="#contact">Contact Me</a>
      </li>
      <li class="section-item search-button d-xs-none d-sm-none d-md-block search-desktop">
        <input id="txtSearchBarDesktop" class="form-control search-bar search-input search-desktop" placeholder="Type your text here..." autocomplete="off">
        <div id="ddlSearchDeskop" class="search-content col text-left card-body d-none text-muted search-desktop" style="display: none;"></div>
      </li>
      <li class="section-item search-button search-desktop">
        <a onclick="toggleSearchBar(event)"><i class="fa fa-search search-icon" aria-hidden="true">&nbsp;<!--Added space to center search icon--></i></a>
      </li>
    </ul>
    <div class="clear-both"></div>
  </nav>
  <div class="fixedsticky-dummy" style="height: 85px;"></div>
  <section id="nav">
    <div id="banner">
      <div id="banner-slideshow-full-width" class="banner-carousel carousel slide carousel-fade" data-ride="carousel" data-keyboard="false" data-interval="3500" data-pause="" style="display: block;">
        <div class="carousel-inner">
          <div class="item active" data-banner-id="1">
            <div class="greenishCover width">
              <div><img src="/assets/images/banners/1.jpg" alt="" style="visibility: visible; margin-top: -21.4583%;"></div>
            </div>
          </div>
          <div class="item" data-banner-id="2">
            <div class="greenishCover width">
              <div><img src="/assets/images/banners/2.jpg" alt="" style="visibility: visible; margin-top: -21.4583%;"></div>
            </div>
          </div>
          <div class="item" data-banner-id="3">
            <div class="greenishCover width">
              <div><img src="/assets/images/banners/3.jpg" alt="" style="visibility: visible; margin-top: -21.4583%;"></div>
            </div>
          </div>
        </div>
        <div class="controls">
          <div class="controls-inner">
            <a href="#" class="prev">&lt;</a>
            <a href="#" class="next">&gt;</a>
          </div>
        </div>
        <div class="highlight-buttons">
          <div class="highlight-buttons-inner">
          </div>
        </div>
      </div>
    </div>
    <div id="banner-caption">
      <div id="banner-caption-position-container">
        <div id="banner-caption-inner">
          <div data-banner-id="1" style="display: block;">Hi! I'm your mortgage professional!</div>
          <div data-banner-id="2">Results tailored to your needs</div>
          <div data-banner-id="3">I'll save you time and money</div>
          <div class="clearfix"></div>
        </div>
      </div>
    </div>
  </section>
  <section itemscope="" itemtype="http://schema.org/WebPage" id="page-content">
    <div class="page-content-container">
      <span id="schema-metadata">
        <span itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
          <span itemprop="name">TMG The Mortgage Group Atlantic Inc.</span>
          <span itemprop="logo" itemscope="" itemtype="https://schema.org/ImageObject">
            <img itemprop="url" src="https://nsmortgagebroker.ca/assets/images/logos/tmg-logo.png" alt="logo">
          </span>
        </span>
      </span>
      <div class="page-byline">
        <h1 itemprop="name" class="page-title">Homepage</h1>
      </div>
      <div itemprop="mainContentOfPage" itemscope="" itemtype="http://schema.org/WebPageElement" class="page-content-details">
        <div itemprop="text" class="page-content-body blog-body-container">
        </div>
      </div>
    </div>
  </section>
  <section id="about">
    <div id="about-top-container">
      <div id="about-top-copy">
        <div class="title">Let me help you finance your home!</div>
        <div class="subtitle">I'll sweat the details so you don't have to.</div>
        <div class="body">Purchasing a home is an important decision and you should be confident about your investment. I will work with you personally to offer you valuable insight throughout the process, save you time and find the mortgage that
          best suits your situation.</div>
      </div>
    </div>
    <div class="custom-content-component blog-body-container">
    </div>
    <div id="about-bottom-copy">
      <div class="video">
        <div class="embed-responsive embed-responsive-16by9">
          <iframe allowfullscreen="" frameborder="0" src="https://www.youtube.com/embed/be_mq9hWxlQ?rel=0" class="embed-responsive-item"></iframe>
        </div>
      </div>
      <div class="points">
        <ul>
          <li>
            <div class="points-heading">Expertise</div>
            <div class="points-item">I will provide you independent expert advice on your financial options. I am not tied to a specific lender or products so I can offer you mortgage products that will best match your specific needs.</div>
          </li>
          <li>
            <div class="points-heading">Save you time with one-stop shopping</div>
            <div class="points-item">Instead of spending your valuable time meeting with competing mortgage lenders, I can quickly narrow down the list of lenders that will help you achieve your financial goals. I will make your comparison-shopping
              fast, easy, and convenient.</div>
          </li>
          <li>
            <div class="points-heading">No charge to you</div>
            <div class="points-item">There's absolutely no charge for my services on typical residential mortgage transactions. Like many other professional services, such as insurance, mortgage brokers are paid a finder's fee when we introduce
              dependable clients to a financial institution.</div>
          </li>
        </ul>
      </div>
      <div class="bottom-copy">
        <div class="bottom-copy-header">Why Should You Use My Services?</div>
        <div class="bottom-copy-body">
          <div><span style="font-weight: bold;">I will negotiate on your behalf. </span>Many people are uncertain or uncomfortable negotiating mortgages directly with their bank. And even if you have an existing relationship with your branch, TMG
            does millions of dollars of transactions yearly with a wide variety of lending institutions so we have strong lender relationships. I can use that relationship to your advantage to negotiate your mortgage to ensure you secure competitive
            rates and terms that benefit you.</div>
          <div>&nbsp;</div>
          <div><span style="font-weight: bold;">I will also ensure that you're getting the best rates and terms. </span>Even if you've already been pre-approved for a mortgage by your bank or another financial institution, you're not obliged to stop
            shopping! I can investigate on your behalf to see if there is an alternative to better suit your needs.</div>
          <div>&nbsp;</div>
          <div><span style="font-weight: bold;">Do you know about mortgage customization?</span> All mortgages are not created equally, and depending on your financial goals, I will ensure the mortgage you receive helps you with those goals. Whether
            borrowing to purchase, renovate, or make your mortgage interest tax deductible, I can ensure that the mortgage you have helps achieve these financial goals.</div>
        </div>
      </div>
      <div class="clear-both"></div>
    </div>
  </section>
  <section id="mortgages">
    <div class="heading">Think Outside the Branch for Your Mortgage</div>
    <div class="panes">
      <div class="pane pane-count-3">
        <div class="pane-icon"><i class="fa fa-laptop" aria-hidden="true"></i></div>
        <div class="pane-heading">New Mortgage</div>
        <div class="pane-text">Need a new mortgage? I'll help you pick the right fit for you and your budget.</div>
      </div>
      <div class="pane pane-count-3">
        <div class="pane-icon"><i class="fa fa-cogs" aria-hidden="true"></i></div>
        <div class="pane-heading">Renewal</div>
        <div class="pane-text">When it comes time to renew your mortgage, I'll help you review your options and make the renewal process simple and easy.</div>
      </div>
      <div class="pane pane-count-3">
        <div class="pane-icon"><i class="fa fa-line-chart" aria-hidden="true"></i></div>
        <div class="pane-heading">Refinancing</div>
        <div class="pane-text">Sometimes, refinancing is your best option for a variety of reasons. Let me review your options and do the hard work for you!</div>
      </div>
      <div class="clear-both"></div>
    </div>
    <div id="mortgage-application">
      <div class="application">
        <div class="text-wrapper">
          <div class="app-heading">Get started with your application now!</div>
          <div class="blurb">I'm here to help with your mortgage needs, refinancing, new home purchases or mortgage renewals.</div>
        </div>
        <div class="apply-button" data-button-text="Apply Online Here!">
          <div id="brokertools-MortgageApplications">
            <div class="brokertool-form">
              <a href="/apply.aspx" class="mortgage-application-button cboxElement">Apply Online Here!</a>
            </div>
          </div>
        </div>
        <div class="clear-both"></div>
      </div>
    </div>
    <div class="types-of-mortgages">
      <div class="types-heading">Types of Mortgages</div>
      <div class="panel-group" id="types-accordion" role="tablist" aria-multiselectable="true">
        <div class="panel">
          <div class="accordion-header" role="tab" id="accordion-header-fixed">
            <h3><a role="button" data-toggle="collapse" data-parent="#types-accordion" href="#collapse-fixed">Fixed</a></h3>
          </div>
          <div id="collapse-fixed" class="panel-collapse collapse in" role="tabpanel">
            <div class="panel-body">
              <img src="/assets/images/mortgage-types-accordion-images/1.jpg" alt="">
              <p>A fixed mortgage offers you the security of locking in your interest rate for the term of your mortgage, so you know exactly how much principal and interest you will be paying on the mortgage during the term. Terms range from 6
                months to 10 years. Fixed rate mortgages offer some form of pre-payment, from 10% to 25% of the original mortgage balance each year, depending on the lender. If you wish to pay off your mortgage in full, there will be a penalty of
                either 3 months simple interest, or an Interest Rate Differential (IRD). The benefit of this mortgage is the rate is lower than an open mortgage, making it a more popular option if you have no plans to pre-pay it in full during the
                term you select.</p>
            </div>
          </div>
        </div>
        <div class="panel">
          <div class="accordion-header" role="tab" id="accordion-header-fixed">
            <h3><a role="button" data-toggle="collapse" data-parent="#types-accordion" href="#collapse-variable" class="collapsed">Variable</a></h3>
          </div>
          <div id="collapse-variable" class="panel-collapse collapse" role="tabpanel">
            <div class="panel-body">
              <img src="/assets/images/mortgage-types-accordion-images/2.jpg" alt="">
              <p>A variable-rate mortgage allows you to take advantage of today's low Prime Rate. Most variable rate products are set below prime, terms range from 1 to 5 years. Payments vary depending on the product or lender you choose. In some
                cases you can fix your payments for up to 5 years, but the interest rate will fluctuate as the Bank Prime Rate changes. In other cases your monthly payments will fluctuate depending on how many times the Prime Rate changes during your
                term.</p>
            </div>
          </div>
        </div>
        <div class="panel">
          <div class="accordion-header" role="tab" id="accordion-header-fixed">
            <h3><a role="button" data-toggle="collapse" data-parent="#types-accordion" href="#collapse-open" class="collapsed">Open</a></h3>
          </div>
          <div id="collapse-open" class="panel-collapse collapse" role="tabpanel">
            <div class="panel-body">
              <img src="/assets/images/mortgage-types-accordion-images/3.jpg" alt="">
              <p>An open mortgage allows you the flexibility to pay off some or the entire mortgage at any time, without penalty. Interest rates are usually higher and are tied to the Bank's Prime Rate.</p>
            </div>
          </div>
        </div>
        <div class="panel">
          <div class="accordion-header" role="tab" id="accordion-header-fixed">
            <h3><a role="button" data-toggle="collapse" data-parent="#types-accordion" href="#collapse-secured" class="collapsed">Secured</a></h3>
          </div>
          <div id="collapse-secured" class="panel-collapse collapse" role="tabpanel">
            <div class="panel-body">
              <img src="/assets/images/mortgage-types-accordion-images/4.jpg" alt="">
              <p>A secured line-of-credit allows you to access the equity in your home whenever you choose. Rates are tied to prime, usually slightly above prime. Required payment on the balance is interest only, making it a good choice where cash
                flow may be important. Lower interest rates compared to an unsecured line of credit. You may have a secured line of credit and a mortgage, if you have good equity in your home.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>
  <section id="rates">
  </section>
  <section id="calculators">
  </section>
  <section id="testimonials">
  </section>
  <section id="subscribe">
  </section>
  <section id="blog">
  </section>
  <section id="contact">
    <div id="contact-heading">Contact me! Let's get started today!</div>
    <div id="contact-call-to-action">
      <p>Get in touch with me today for your <em>free</em> consultation!</p>
      <p>Whether you're looking for a first mortgage, refinancing your current home, or just researching your options, I'm here to help.</p>
    </div>
    <div id="contact-form">
      <input name="ctl13$txtContactName" type="text" id="ctl13_txtContactName" placeholder="Name *"><input name="ctl13$txtContactEmail" type="text" id="ctl13_txtContactEmail" pattern="^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$"
        title="Please enter a valid e-mail address" placeholder="Email *"><input name="ctl13$txtContactPhone" type="text" id="ctl13_txtContactPhone" placeholder="Phone *">
      <span id="ctl13_ctl00" style="display:none;"></span>
      <span id="ctl13_ctl01" style="display:none;"></span>
      <span id="ctl13_ctl02" style="display:none;"></span>
      <span id="ctl13_ctl03" style="display:none;"></span>
      <textarea name="ctl13$txtContactMessage" rows="2" cols="20" id="ctl13_txtContactMessage" placeholder="Message"></textarea>
      <div id="RecaptchaContactFormField">
        <div style="width: 304px; height: 78px;">
          <div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-vo0amejtjx1g" frameborder="0" scrolling="no"
              sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
              src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LdI5hMUAAAAAL-AS4MjQLlfvb3AWOmdKxXzkma6&amp;co=aHR0cHM6Ly9uc21vcnRnYWdlYnJva2VyLmNhOjQ0Mw..&amp;hl=en&amp;v=-ZG7BC9TxCVEbzIO2m429usb&amp;size=normal&amp;cb=tiw71obr4n9k"></iframe>
          </div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
            style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
        </div><iframe style="display: none;"></iframe>
      </div>
      <input type="submit" name="ctl13$btnContactSubmit" value="Submit" id="ctl13_btnContactSubmit">
    </div>
  </section>
  <section id="map">
  </section>
  <section id="footer">
    <div id="footer-upper-banner">
      <div id="footer-upper-banner-container">
        <div id="footer-copy">I am a proud part of TMG The Mortgage Group Inc. – an award-winning Canadian national mortgage brokerage with a network of 1,400+ qualified and accredited mortgage brokers, agents and associates providing residential and
          commercial mortgage services. Since 1990, TMG has helped hundreds-of-thousands of Canadians get the best financing solutions and mortgage rates by working with many lenders (including top tier banks) from coast-to-coast.</div>
        <div id="footer-quick-links">
          <div class="heading">Quick Links</div>
          <div class="heading-underline"></div>
          <div class="content">
            <ul class="links-list">
              <li><a href="#home">Home</a></li>
              <li><a href="#about">About Me</a></li>
              <li><a href="#mortgages">Mortgages</a></li>
              <li><a href="#mortgage-application">Apply Online</a></li>
              <li><a href="/privacy.aspx">Privacy Policy</a></li>
            </ul>
          </div>
        </div>
        <div id="footer-contact-info">
          <div class="heading">Contact Info</div>
          <div class="heading-underline"></div>
          <div class="content">
            <ul class="contact-list">
              <li class="address"><i class="fa fa-map-marker" aria-hidden="true"></i><span class="nobreak">Emily Fraser</span><span class="nobreak">95 Poplar Drive,</span> <span class="nobreak"></span><span class="nobreak">Hebbville, NS</span> <span
                  class="nobreak">B4V 6Y8</span></li>
              <li class="phone"><i class="fa fa-phone" aria-hidden="true"></i><a href="tel:902-553-0390">902-553-0390</a></li>
              <li class="email"><i class="fa fa-envelope" aria-hidden="true"></i><a href="mailto:emily.fraser@mortgagegroup.com">emily.fraser@mortgagegroup.com</a></li>
            </ul>
          </div>
        </div>
        <div id="footer-hours-of-operation" class=" d-none">
          <div class="heading">HOURS OF OPERATION</div>
          <div class="heading-underline"></div>
          <div class="content">
            <ul class="hour-list">
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Mo:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Tu:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">We:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Th:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Fr:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Sa:</span>Closed</li>
              <li class="weekday"><i class="fa fa-clock-o" aria-hidden="true"></i><span class="day">Su:</span>Closed</li>
            </ul>
          </div>
        </div>
        <div id="footer-logo" class="css-logo">
          <div class="footer-img">
          </div>
          <div class="clear-both"></div>
        </div>
      </div>
      <div id="footer-lower-banner">
        <div id="footer-lower-banner-container">
          <div id="footer-social">
          </div>
          <div id="footer-copyright">© 2024 nsmortgagebroker.ca. All rights reserved.</div>
        </div>
      </div>
    </div>
  </section>
  <script type="text/javascript">
    //<![CDATA[
    var Page_Validators = new Array(document.getElementById("ctl13_ctl00"), document.getElementById("ctl13_ctl01"), document.getElementById("ctl13_ctl02"), document.getElementById("ctl13_ctl03"));
    //]]>
  </script>
  <script type="text/javascript">
    //<![CDATA[
    var ctl13_ctl00 = document.all ? document.all["ctl13_ctl00"] : document.getElementById("ctl13_ctl00");
    ctl13_ctl00.controltovalidate = "ctl13_txtContactName";
    ctl13_ctl00.display = "None";
    ctl13_ctl00.validationGroup = "Contact";
    ctl13_ctl00.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
    ctl13_ctl00.initialvalue = "";
    var ctl13_ctl01 = document.all ? document.all["ctl13_ctl01"] : document.getElementById("ctl13_ctl01");
    ctl13_ctl01.controltovalidate = "ctl13_txtContactEmail";
    ctl13_ctl01.display = "None";
    ctl13_ctl01.validationGroup = "Contact";
    ctl13_ctl01.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
    ctl13_ctl01.initialvalue = "";
    var ctl13_ctl02 = document.all ? document.all["ctl13_ctl02"] : document.getElementById("ctl13_ctl02");
    ctl13_ctl02.controltovalidate = "ctl13_txtContactEmail";
    ctl13_ctl02.display = "None";
    ctl13_ctl02.validationGroup = "Contact";
    ctl13_ctl02.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
    ctl13_ctl02.validationexpression = "^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}$";
    var ctl13_ctl03 = document.all ? document.all["ctl13_ctl03"] : document.getElementById("ctl13_ctl03");
    ctl13_ctl03.controltovalidate = "ctl13_txtContactPhone";
    ctl13_ctl03.display = "None";
    ctl13_ctl03.validationGroup = "Contact";
    ctl13_ctl03.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
    ctl13_ctl03.initialvalue = "";
    //]]>
  </script>
  <script type="text/javascript">
    //<![CDATA[
    var Page_ValidationActive = false;
    if (typeof(ValidatorOnLoad) == "function") {
      ValidatorOnLoad();
    }

    function ValidatorOnSubmit() {
      if (Page_ValidationActive) {
        return ValidatorCommonOnSubmit();
      } else {
        return true;
      }
    }
    //]]>
  </script>
</form>

Text Content

Let's chat: 902-553-0390

Home

 * Home
 * Apply Now
 * About Me
 * Mortgages
 * Contact Me
 * 
 *  



< >

Hi! I'm your mortgage professional!
Results tailored to your needs
I'll save you time and money

TMG The Mortgage Group Atlantic Inc.


HOMEPAGE


Let me help you finance your home!
I'll sweat the details so you don't have to.
Purchasing a home is an important decision and you should be confident about
your investment. I will work with you personally to offer you valuable insight
throughout the process, save you time and find the mortgage that best suits your
situation.

 * Expertise
   I will provide you independent expert advice on your financial options. I am
   not tied to a specific lender or products so I can offer you mortgage
   products that will best match your specific needs.
 * Save you time with one-stop shopping
   Instead of spending your valuable time meeting with competing mortgage
   lenders, I can quickly narrow down the list of lenders that will help you
   achieve your financial goals. I will make your comparison-shopping fast,
   easy, and convenient.
 * No charge to you
   There's absolutely no charge for my services on typical residential mortgage
   transactions. Like many other professional services, such as insurance,
   mortgage brokers are paid a finder's fee when we introduce dependable clients
   to a financial institution.

Why Should You Use My Services?
I will negotiate on your behalf. Many people are uncertain or uncomfortable
negotiating mortgages directly with their bank. And even if you have an existing
relationship with your branch, TMG does millions of dollars of transactions
yearly with a wide variety of lending institutions so we have strong lender
relationships. I can use that relationship to your advantage to negotiate your
mortgage to ensure you secure competitive rates and terms that benefit you.
 
I will also ensure that you're getting the best rates and terms. Even if you've
already been pre-approved for a mortgage by your bank or another financial
institution, you're not obliged to stop shopping! I can investigate on your
behalf to see if there is an alternative to better suit your needs.
 
Do you know about mortgage customization? All mortgages are not created equally,
and depending on your financial goals, I will ensure the mortgage you receive
helps you with those goals. Whether borrowing to purchase, renovate, or make
your mortgage interest tax deductible, I can ensure that the mortgage you have
helps achieve these financial goals.

Think Outside the Branch for Your Mortgage
New Mortgage
Need a new mortgage? I'll help you pick the right fit for you and your budget.
Renewal
When it comes time to renew your mortgage, I'll help you review your options and
make the renewal process simple and easy.
Refinancing
Sometimes, refinancing is your best option for a variety of reasons. Let me
review your options and do the hard work for you!

Get started with your application now!
I'm here to help with your mortgage needs, refinancing, new home purchases or
mortgage renewals.
Apply Online Here!

Types of Mortgages


FIXED

A fixed mortgage offers you the security of locking in your interest rate for
the term of your mortgage, so you know exactly how much principal and interest
you will be paying on the mortgage during the term. Terms range from 6 months to
10 years. Fixed rate mortgages offer some form of pre-payment, from 10% to 25%
of the original mortgage balance each year, depending on the lender. If you wish
to pay off your mortgage in full, there will be a penalty of either 3 months
simple interest, or an Interest Rate Differential (IRD). The benefit of this
mortgage is the rate is lower than an open mortgage, making it a more popular
option if you have no plans to pre-pay it in full during the term you select.


VARIABLE

A variable-rate mortgage allows you to take advantage of today's low Prime Rate.
Most variable rate products are set below prime, terms range from 1 to 5 years.
Payments vary depending on the product or lender you choose. In some cases you
can fix your payments for up to 5 years, but the interest rate will fluctuate as
the Bank Prime Rate changes. In other cases your monthly payments will fluctuate
depending on how many times the Prime Rate changes during your term.


OPEN

An open mortgage allows you the flexibility to pay off some or the entire
mortgage at any time, without penalty. Interest rates are usually higher and are
tied to the Bank's Prime Rate.


SECURED

A secured line-of-credit allows you to access the equity in your home whenever
you choose. Rates are tied to prime, usually slightly above prime. Required
payment on the balance is interest only, making it a good choice where cash flow
may be important. Lower interest rates compared to an unsecured line of credit.
You may have a secured line of credit and a mortgage, if you have good equity in
your home.






Contact me! Let's get started today!

Get in touch with me today for your free consultation!

Whether you're looking for a first mortgage, refinancing your current home, or
just researching your options, I'm here to help.



I am a proud part of TMG The Mortgage Group Inc. – an award-winning Canadian
national mortgage brokerage with a network of 1,400+ qualified and accredited
mortgage brokers, agents and associates providing residential and commercial
mortgage services. Since 1990, TMG has helped hundreds-of-thousands of Canadians
get the best financing solutions and mortgage rates by working with many lenders
(including top tier banks) from coast-to-coast.
Quick Links

 * Home
 * About Me
 * Mortgages
 * Apply Online
 * Privacy Policy

Contact Info

 * Emily Fraser95 Poplar Drive, Hebbville, NS B4V 6Y8
 * 902-553-0390
 * emily.fraser@mortgagegroup.com

HOURS OF OPERATION

 * Mo:Closed
 * Tu:Closed
 * We:Closed
 * Th:Closed
 * Fr:Closed
 * Sa:Closed
 * Su:Closed


© 2024 nsmortgagebroker.ca. All rights reserved.