﻿// JS required by PureChat to redirect to chat window.

var o_h = '';
function pc_a_s() {
    var t_u = window.location.host;
    var pc_b = 'http://chat.healthcarefinancedirect.com/';
    var s_d = document.getElementById("pc_S_d");
    if (!s_d)
        return;
    var st = document.createElement('script');
    st.src = pc_b + 'PureChatResourceHandler.ashx?h=' + escape(t_u) + '&zzz=' + new Date().getTime().toString();
    st.type = "text/javascript";
    while (s_d.childNodes.length > 0) {
        s_d.removeChild(s_d.childNodes[0]);
    }
    s_d.appendChild(st);
}
window.setTimeout('pc_a_s();', 1);
