function gwTvPrivacyPolicyFix() {
var pWidgets = document.querySelectorAll('.wpws_registration_widget p') || [];
if (pWidgets.length === 0) return;
var match = "*Privacy Policy";
var ppLink = 'privacy policy';
for(var i = 0; i < pWidgets.length ; i++) {
var _this = pWidgets[i] || false;
if (!_this) continue;
var _html = _this.innerHTML || '';
if (_html.indexOf(match) === -1) continue;
_html = _html.replace(match, ppLink);
pWidgets[i].innerHTML = _html;
}
} setTimeout(gwTvPrivacyPolicyFix, 125);