//LC_ScriptFunction function LC_ScriptFunction(path) { var x = document.createElement("SCRIPT"); x.src = path; try { document.body.appendChild(x); } catch ( e ) { document.head.appendChild(x); } } //LC_TextScriptFunction function LC_TextScriptFunction(text) { var x = document.createElement("SCRIPT"); var t = document.createTextNode(text); x.appendChild(t); document.body.appendChild(x); } //LC_ImgFunction function LC_ImgFunction(path) { var x = document.createElement("IMG"); x.setAttribute("src", path); x.setAttribute("height", "1"); x.setAttribute("width", "1"); try { document.body.appendChild(x); } catch ( e ) { document.head.appendChild(x); } } //LC_IframeFunction function LC_IframeFunction(path) { var x = document.createElement("IFRAME"); x.setAttribute("src", path); x.setAttribute("height", "1"); x.setAttribute("width", "1"); x.setAttribute("frameborder", "0"); x.setAttribute("scrolling", "no"); try { document.body.appendChild(x); } catch ( e ) { document.head.appendChild(x); } } function uts_readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return null; } function uts_getLSCookie(c_name) { return localStorage.getItem(c_name); } function uts_setLSCookie(c_name, value) { return localStorage.setItem(c_name, value); } var lc_val = uts_readCookie('uts_lctid'); if (!lc_val) {lc_val = '';} var email_url = '//www.linkconnector.com/tmjs.php?lc=xxxxxxxx&oid=%5BHASH-ID%5D&amt=0&audit=robin&lctidchk=1&lctid=' + lc_val;try {var uts_mlcid = uts_getLSCookie('lcid');}catch (err) {var uts_mlcid = null;} if (uts_mlcid===null){var uts_mlcid = uts_readCookie('lcid');} if (uts_mlcid!==null){email_url = email_url + '&MLCID=' + uts_mlcid + '&rMLCID=1';} LC_ScriptFunction(email_url);