﻿if (location.host == "livepharmacyce.com") {
    url = window.location.href;
    newURL = url.replace("://", "://www.");
    window.location = newURL
}
if(window.location.protocol.toLowerCase() =="https:") { 
    url = window.location.href;
    unsecURL = url.replace("https:","http:");
    window.location = unsecURL
}
