var this_url = document.URL;

if (!(this_url.match(/appointmentplace/))) {
    var dom_name = document.domain;
    var cust_name = dom_name.replace(/.com$/, "");
    cust_name = cust_name.replace("animalfriendstrainer", "animalfriends");
    this_url = this_url.replace(dom_name + "/", dom_name + "/" + cust_name + "/");
    newloc = this_url.replace(/\/$/, "");
    //document.write("redirecting to: " + newloc);
    //alert("redirecting to: " + newloc);
    window.location=newloc;
}

