function setCookie(cookieName, cookieValue, nSeconds, path, domain) { if (!cookieName || !cookieValue) return; var expire_string = ""; if (nSeconds != null && nSeconds != 0) { var expire = new Date(); expire.setTime(new Date().getTime() + (nSeconds * 1000)); //Milisegundos expire_string = expire.toGMTString(); } document.cookie = encodeURIComponent(cookieName) + "=" + encodeURIComponent(cookieValue) + "; expires=" + expire_string + (path ? "; path=" + path : "") + (domain ? "; domain=" + domain : ""); }; setCookie('jtUidc','', 2 * 365 * 24 * 60 * 60); setCookie('jtSessionRedirector','8c786946-6df3-497c-8e50-f36428873b04'); setCookie('jtData','{"HTTP_X_APPENGINE_COUNTRY":"US","HTTP_X_APPENGINE_REGION":"oh","HTTP_X_APPENGINE_CITY":"columbus","HTTP_X_APPENGINE_CITYLATLONG":"39.961176,-82.998794"}', 2 * 365 * 24 * 60 * 60); setCookie('jtTime','2024-05-04 07:32:38.355600', '59242'); setCookie('jtClickid','');