﻿/* 
 * All the landing pages have google ads while are non-secure.
 * This js is to force the non-secure when displaying the landing pages.
 * It should be included only in those pages that need to be secured
 * for example, landing page for budgeting, taxes, Financial planning etc.
 */
if("https:" == document.location.protocol) {
    var nonSecureURL = "http://" + document.location.host + document.location.pathname + document.location.search;
    //alert("Non-Secure url = " + nonSecureURL + "\n\n default url = " + document.location);
    window.location = nonSecureURL;
}


