827 lines
40 KiB
HTML
827 lines
40 KiB
HTML
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en-US" data-lang="en-US" crm-lang="en-US" dir="ltr" crm-lcid="1033"
|
|
same-site-mode="None">
|
|
<head>
|
|
|
|
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<script type="text/javascript" >
|
|
|
|
</script>
|
|
<title>
|
|
|
|
FAQ Home
|
|
|
|
</title>
|
|
|
|
<script src="/_portal/7b138792-1090-45b6-9241-8f8d96d8c372/Resources/ResourceManager?lang=en-US"></script>
|
|
|
|
<script type="text/javascript">
|
|
// Refresh all powerBI Iframes on Login in one Iframe
|
|
window.addEventListener('message', function (event) {
|
|
if (event && event.data && event.data == 'refreshPowerBI') {
|
|
$("iframe.powerbi").each(function () {
|
|
this.src = this.src;
|
|
});
|
|
}
|
|
});
|
|
|
|
// Fix for incorrect viewport width setting in IE 10 on Windows Phone 8.
|
|
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
|
|
var msViewportStyle = document.createElement("style");
|
|
msViewportStyle.appendChild(document.createTextNode("@-ms-viewport{width:auto!important}"));
|
|
document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
<link href="/bootstrap.min.css?1524499173000" rel="stylesheet" />
|
|
|
|
<link href="https://gov.content.powerapps.us/resource/powerappsportal/dist/font-awesome.bundle-3d8a58a48f.css" onerror="javascript: var target = event.target; var link = document.createElement('link'); link.crossOrigin = target.crossOrigin; link.href = '/dist/font-awesome.bundle-3d8a58a48f.css'; link.rel = 'stylesheet'; target.insertAdjacentElement('afterend',link);" rel="stylesheet" />
|
|
|
|
<link href="https://gov.content.powerapps.us/resource/powerappsportal/dist/preform.bundle-8a0534540c.css" onerror="javascript: var target = event.target; var link = document.createElement('link'); link.crossOrigin = target.crossOrigin; link.href = '/dist/preform.bundle-8a0534540c.css'; link.rel = 'stylesheet'; target.insertAdjacentElement('afterend',link);" rel="stylesheet" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link href="/faqcss.css?1666640750000" rel="stylesheet" />
|
|
|
|
|
|
|
|
<script src="https://www.ssa.gov/framework/js/ssa.firefly.head.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<link href="https://gov.content.powerapps.us/resource/powerappsportal/dist/pwa-style.bundle-2739c60227.css" onerror="javascript: var target = event.target; var link = document.createElement('link'); link.crossOrigin = target.crossOrigin; link.href = '/dist/pwa-style.bundle-2739c60227.css'; link.rel = 'stylesheet'; target.insertAdjacentElement('afterend',link);" rel="stylesheet" />
|
|
|
|
</head>
|
|
<body data-sitemap-state="/"
|
|
data-dateformat="M/d/yyyy"
|
|
data-timeformat="h:mm tt"
|
|
data-datetimeformat="M/d/yyyy h:mm tt"
|
|
data-app-path="/"
|
|
data-ckeditor-basepath="/js/BaseHtmlContentDesigner/Libs/msdyncrm_/libs/ckeditor/"
|
|
data-case-deflection-url="/_services/search/7b138792-1090-45b6-9241-8f8d96d8c372">
|
|
|
|
|
|
|
|
<link href="https://gov.content.powerapps.us/resource/powerappsportal/dist/pcf-style.bundle-373a0f4982.css" onerror="javascript: var target = event.target; var link = document.createElement('link'); link.crossOrigin = target.crossOrigin; link.href = '/dist/pcf-style.bundle-373a0f4982.css'; link.rel = 'stylesheet'; target.insertAdjacentElement('afterend',link);" rel="stylesheet" />
|
|
|
|
|
|
|
|
|
|
|
|
<div id="offlineNotificationBar" style="display: none;">
|
|
<img alt="web" id="web" onerror="javascript: var target = event.target; var img = document.createElement('img'); img.src = '/css/images/web.png'; img.alt = 'web'; img.id = 'web' ; target.insertAdjacentElement('afterend',img); target.remove();" src="https://gov.content.powerapps.us/resource/powerappsportal/img/web.png" />
|
|
<div id="message">You’re offline. This is a read only version of the page.</div>
|
|
<div id="close" onclick="this.parentElement.style.display='none';"><img alt="close" onerror="javascript: var target = event.target; var img = document.createElement('img'); img.src = '/css/images/close.png'; img.alt = 'close'; img.id = '' ; target.insertAdjacentElement('afterend',img); target.remove();" src="https://gov.content.powerapps.us/resource/powerappsportal/img/close.png" /></div>
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
window.DisableCkEditor = window.DisableCkEditor || {};
|
|
DisableCkEditor.Value = 'False';
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
var enableOmniChannelWidgetWithSiteCopilot = 'False';
|
|
if (enableOmniChannelWidgetWithSiteCopilot === "True" || enableOmniChannelWidgetWithSiteCopilot === "true") {
|
|
const authUrl = window.location.origin + "/_services/auth/portalusertoken";
|
|
const fetchWithRetries = async (url, options, retries) => {
|
|
try {
|
|
const authResponse = await fetch(url, options);
|
|
const token = await authResponse.text();
|
|
sessionStorage['c2Token'] = token;
|
|
} catch (err) {
|
|
if (retries === 1) throw err;
|
|
return await fetchWithRetries(url, options, retries - 1);
|
|
}
|
|
};
|
|
fetchWithRetries(authUrl, { method: "POST" }, 4);
|
|
}
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
var isPvaBotAuthenticated = sessionStorage['isPvaBotAuthenticated'];
|
|
var isPortalUserLoggedIn = 'False';
|
|
|
|
if ((isPvaBotAuthenticated != null || isPvaBotAuthenticated != undefined) && isPvaBotAuthenticated != isPortalUserLoggedIn) {
|
|
sessionStorage['triggerPvaBotSignOut'] = true;
|
|
sessionStorage.removeItem('c2Token');
|
|
sessionStorage.removeItem('directLinetoken');
|
|
sessionStorage.removeItem('conversation_Id');
|
|
}
|
|
sessionStorage['isPvaBotAuthenticated'] = isPortalUserLoggedIn;
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
window["Microsoft"] = window["Microsoft"] || {};
|
|
window["Microsoft"].Dynamic365 = {
|
|
Portal: {
|
|
|
|
User: {
|
|
userName: '',
|
|
contactId: ''
|
|
},
|
|
|
|
version: '9.7.1.38',
|
|
type: 'CustomerPortal',
|
|
id: '3a048792-7cab-4b1c-975e-0043c4f257bf',
|
|
geo: 'GCC2',
|
|
tenant: '98ed61bc-45d1-4a5b-946a-54bd05626381',
|
|
correlationId: '7c3127ec-a443-44f0-9796-2e3a24cbd15b',
|
|
orgEnvironmentId: 'b54d186a-708c-4161-a44d-a4125683fe0e',
|
|
orgId: '6a4055f4-9078-449e-bfb6-cec1c28aae8b',
|
|
portalProductionOrTrialType: 'Production',
|
|
isTelemetryEnabled: 'True',
|
|
InstrumentationSettings: {
|
|
instrumentationKey: '2f217cb8f40440eeb8b0aa80a2be2f7e-e0ec7b51-d1bb-4d8c-83b1-cc77aaba9009-7472',
|
|
collectorEndpoint: 'https://tb.events.data.microsoft.com/OneCollector/1.0/'
|
|
},
|
|
timerProfileForBatching: 'NEAR_REAL_TIME',
|
|
activeLanguages: ["en-US"]
|
|
}
|
|
}
|
|
|
|
// Mark request not cacheable if Dynamics365PortalAnalytics cookie is being refreshed by the server or if the cookie in request header is invalid
|
|
|
|
|
|
// For client side telemetry intializing Dynamics365PortalAnalytics cookie object
|
|
|
|
window["Microsoft"].Dynamic365.Portal.dynamics365PortalAnalytics = 'Brktl9Gs3XXUfEZS3LyFUf4-BE2we0IHlSSp1iXfg3d435QOIHSWtqWuJaEsFRoH3tRsrwKcxAjrRvSmG6MWPJwJ3mlcOG5jtvE9v63qtCYkCm036rxrU0cvhkf67qfo_jOJCSBZjK6WCywnSYI1Iw2'; // CodeQL [SM00430] False Positive: only alphanumeric chars allowed, for non-alphanumeric char it will return INVALID_CHARACTERS_IN_COOKIE
|
|
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- DO NOT IMPLEMENT THIS STYLESHEET UNTIL ALL REFERENCES TO LOCAL CSS INCLUDING to faqcss.css HAVE BEEN UPGRADED TO THE FRAMEWORK VERSION -->
|
|
<!-- <link rel="stylesheet" href="https://www.ssa.gov/framework/css/ssa.firefly.css" /> -->
|
|
|
|
<!-- Google Tag Manager from SSA framework injected near top of <body> -->
|
|
<!--<script src="https://www.ssa.gov/framework/js/ssa.firefly.body.js"></script>-->
|
|
<!-- <script rel="trigger" type="text/javascript" src="/foresee-trigger.js"></script> -->
|
|
<noscript>
|
|
<meta name="robots" content="noindex">
|
|
<meta http-equiv="refresh" content="0; url=https://www.ssa.gov/faqs/en/">
|
|
</noscript>
|
|
<script>
|
|
if (window.location.pathname.indexOf('KA-') !== -1) {
|
|
const regex = /(KA-)\w+/;
|
|
const article = window.location.pathname.match(regex);
|
|
window.location.replace('https://www.ssa.gov/faqs/en/questions/' + article[0] + '.html')
|
|
} else {
|
|
window.location.replace('https://www.ssa.gov/faqs/en/');
|
|
}
|
|
</script>
|
|
<script type="text/javascript" src="/jQuery.lib.js"></script>
|
|
<script type="text/javascript">
|
|
jQuery.noConflict();
|
|
</script>
|
|
<script rel="browser" type="text/javascript" src="/jquery.browser.js"></script>
|
|
<script type="text/javascript" src="/jquery.xdomainrequest.min.js"></script>
|
|
<script type="text/javascript" src="/jquery.pagination.js"></script>
|
|
<script rel="matchMedia" type="text/javascript" src="/matchMedia.js"></script>
|
|
<script rel="util" type="text/javascript" src="/jquery.ssaportal.util.js"></script>
|
|
<script type="text/javascript" src="/configs.js"></script>
|
|
<script rel="main" type="text/javascript" src="/main.js"></script>
|
|
<style type="text/css">.ticketnewconfirm_asp .spanish { display: none; }
|
|
|
|
#configFields input[type="text"],
|
|
#configFields select,
|
|
#configFields textarea {
|
|
width: 50%;
|
|
}
|
|
|
|
/* Alert banner styles - source: www.ssa.gov/framework/css/ssa.firefly.css */
|
|
.cc {
|
|
border-color: currentColor;
|
|
color: currentColor;
|
|
}
|
|
.svg3 {
|
|
height: 32px;
|
|
width: 32px;
|
|
}
|
|
.fx-none {
|
|
flex: none;
|
|
}
|
|
.mr3 {
|
|
margin-right: 1rem;
|
|
}
|
|
/* Page Title - source: www.ssa.gov/framework/css/ssa.firefly.css */
|
|
.bg-ivory-200 {
|
|
background-color: #e1d7cd
|
|
}
|
|
</style>
|
|
|
|
<!-- <div id="page"> -->
|
|
<!-- ACCESSIBILITY OPTIONS -->
|
|
<div class="bg-dark-gray accessibility">
|
|
<div class="content-wrapper no-padding"><a class="skip-navigation" id="skip-navigation" href="#content">Skip to content</a></div>
|
|
</div>
|
|
|
|
<!-- WCMS SITE ALERT (EMERGENCY) -->
|
|
<div aria-label="Site Alert" style="background-color: #FFE396;" hidden> <!--FFE396--> <!-- Turn off by adding the attribute hidden before the > -->
|
|
<div class="fx mx-auto pa3" style="max-width: 75rem;">
|
|
<!-- EMERGENCY ICON Starting 8/30/2024-->
|
|
<svg class="fx-none mr3 svg3" focusable="false" viewbox="0 0 20 20">
|
|
<path fill="#FFFFFF" fill-rule="evenodd" stroke-width="0" d="M10.8,15h-1.7v-1.7h1.7v1.7ZM10.8,11.7h-1.7v-4.9h1.7v4.9Z" vector-effect="non-scaling-stroke"></path>
|
|
<path fill="#1C1D1F" fill-rule="evenodd" stroke-width="0" d="M.8,17.5h18.3L10,1.7.8,17.5ZM10.8,15h-1.7v-1.7h1.7v1.7ZM10.8,11.7h-1.7v-4.9h1.7v4.9h0Z" vector-effect="non-scaling-stroke"></path>
|
|
</svg>
|
|
<!--<a class="cc" href="https://www.ssa.gov/agency/emergency/"><u>Due to global IT issues, local offices are closed today. Our phone line remains open and many online services at ssa.gov remain available.</u></a>-->
|
|
<a class="cc" href="https://www.ssa.gov/scam/"><u>Protect Yourself from Scams</u></a> <!--<a class="cc" href="{INSERT URL}"><u>{INSERT TEXT}</u></a>-->
|
|
</div>
|
|
</div>
|
|
<!-- WCMS SITE ALERT (INFORMATION) -->
|
|
|
|
<div aria-label="Site Alert" style="background-color: #E7F6F8;"> <!--#FFE396; E7F6F8--ble-->
|
|
<div class="fx mx-auto pa3" style="max-width: 75rem;">
|
|
<svg class="fx-none mr3 svg3" focusable="false" viewbox="0 0 20 20"> <!--new-->
|
|
<path fill="#1C1D1F" fill-rule="evenodd" stroke-width="0" d="M10,1.7C5.4,1.7,1.7,5.4,1.7,10s3.7,8.3,8.3,8.3,8.3-3.7,8.3-8.3S14.6,1.7,10,1.7ZM9.2,7.5v-1.7h1.7v1.7h-1.7ZM9.2,9.2v5h1.7v-5h-1.7Z" vector-effect="non-scaling-stroke"></path>
|
|
<path fill="#FFFFFF" fill-rule="evenodd" stroke-width="0" d="M10.8,7.5h-1.7v-1.7h1.7v1.7Z" vector-effect="non-scaling-stroke"></path>
|
|
<path fill="#FFFFFF" fill-rule="evenodd" stroke-width="0" d="M10.8,14.2h-1.7v-5h1.7v5Z" vector-effect="non-scaling-stroke"></path>
|
|
</svg>
|
|
<a class="cc" href="https://www.ssa.gov/scam/"><u>Protect Yourself from Scams</u></a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- WCMS TESTING -- Enable a dev version of the WCMS header in an orphaned production test page
|
|
Partial URL = "wcms_testing"
|
|
Page Title = "WCMS Testing"
|
|
-->
|
|
|
|
<aside class="accessibility" id="accessibility"><a href="#content" id="skip-navigation">Skip to main content</a></aside><ssa-header id="firefly-legacy"><noscript><header class="bg-logo white" id="banner" role="banner" style="background-color: #0b4778;"><div class="fx fx-jc-sb px2 py0 wrapper"><h1 class="fs2 fw4 ma0 l-fs3"><a class="fx fx-ai-c hover-yellow py3 white m-py2" href="/"><img alt="" class="svg3 m-svg5" src="/framework/images/logo.svg" height="64" width="64"> <span class="pl1 m-pl2">Social Security</span></a></h1><nav class="fs1 fx print-dn"><a class="fx fx-ai-c hover-yellow px2 white" href="https://search.ssa.gov/search/docs?affiliate=ssa&dc=1682&query=" id="ssa-search" title="Search" target="_blank"><svg class="svg1" focusable="false" viewbox="0 0 24 24"><path d="M14.182.0q-1.994.0-3.814.78t-3.132 2.092-2.092 3.132-.78 3.814q0 1.713.558 3.281t1.59 2.847l-6.196 6.187q-.315.315-.315.776.0.469.311.78t.78.311q.46.0.776-.315l6.187-6.196q1.278 1.031 2.847 1.59t3.281.558q1.994.0 3.814-.78t3.132-2.092 2.092-3.132.78-3.814-.78-3.814-2.092-3.132-3.132-2.092-3.814-.78zm0 2.182q1.551.0 2.966.605t2.438 1.628 1.628 2.438.605 2.966-.605 2.966-1.628 2.438-2.438 1.628-2.966.605-2.966-.605-2.438-1.628-1.628-2.438-.605-2.966.605-2.966 1.628-2.438 2.438-1.628 2.966-.605z" vector-effect="non-scaling-stroke"></path></svg> <span class="dn m-dib m-pl1">Search</span> </a><a class="fx fx-ai-c hover-yellow px2 white" href="/menu" id="ssa-menu" title="Menu"><svg class="svg1" focusable="false" viewbox="0 0 24 24"><path d="M3 5h18q.414.0.707.293T22 6t-.293.707T21 7H3q-.414.0-.707-.293T2 6t.293-.707T3 5zm0 12h18q.414.0.707.293T22 18t-.293.707T21 19H3q-.414.0-.707-.293T2 18t.293-.707T3 17zm0-6h18q.414.0.707.293T22 12t-.293.707T21 13H3q-.414.0-.707-.293T2 12t.293-.707T3 11z" vector-effect="non-scaling-stroke"></path></svg> <span class="dn m-dib m-pl1">Menu</span> </a><a class="fx fx-ai-c hover-yellow px2 white" hreflang="es" href="/es" id="ssa-languages" title="Español"><svg class="svg1" focusable="false" viewbox="0 0 14 16"><path fill-rule="evenodd" d="M7 1C3.14 1 0 4.14.0 8s3.14 7 7 7c.48.0.94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27.0-.33.0-.08-.27-.22-.34-.23-.06.0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3.0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83.0.14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17.0.7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84.0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28.0.0-.05-.11.17-.14.44-.05.98.41 1.11.41.13.0.19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13.0.25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z" vector-effect="non-scaling-stroke"></path></svg> <span class="dn m-dib m-pl1">Español</span> </a><a class="fx fx-ai-c hover-yellow px2 white" href="https://secure.ssa.gov/RIL/SiView.action" id="ssa-signin" title="Sign in" target="_blank"><svg class="svg1" focusable="false" viewbox="0 0 24 24"><path d="M12 17.016q-.797.0-1.406-.61t-.61-1.405.61-1.405 1.406-.61 1.406.61.61 1.406-.61 1.407-1.406.61zm6 3V9.986H6v10.03h12zm-6-17.11q-1.266.0-2.18.914T8.906 6H9v2.016h6.094V6q0-1.266-.914-2.18T12 2.906zm6 5.11q.797.0 1.406.586t.61 1.383v10.03q0 .798-.61 1.384T18 21.984H6q-.797.0-1.406-.586t-.61-1.384V9.986q0-.798.61-1.384T6 8.016h.984V6q0-2.063 1.477-3.54T12 .985t3.54 1.477T17.015 6v2.016H18z" vector-effect="non-scaling-stroke"></path></svg> <span class="dn m-dib m-pl1">Sign in</span></a></nav></div></header></noscript></ssa-header><script src="https://www.ssa.gov/legacy/components/dist/ssa-header.js"></script>
|
|
|
|
<!-- TITLE BAR -->
|
|
<main class="content" role="main">
|
|
<section class="bg-ivory-200">
|
|
<div class="py2 wrapper">
|
|
<h2 class="fw4 ma0">Frequently Asked Questions</h2>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- add anti-forgery token-->
|
|
<div id="antiforgerytoken" data-url="/_layout/tokenhtml"></div>
|
|
|
|
|
|
|
|
<!-- Client Telemetry init if telemetry enabled-->
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/client-telemetry.bundle-f9f45b65a6.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/client-telemetry.bundle-f9f45b65a6.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
<!-- Client Telemetry Wrapper init -->
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/client-telemetry-wrapper.bundle-633e70f51b.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/client-telemetry-wrapper.bundle-633e70f51b.js" type="text/javascript"></script>
|
|
|
|
<script>
|
|
window.clientLogWrapper = new ClientLogWrapper();
|
|
</script>
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/preform.moment_2_29_4.bundle-4fdd3f639b.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/preform.moment_2_29_4.bundle-4fdd3f639b.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/pcf-dependency.bundle-805a1661b7.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/pcf-dependency.bundle-805a1661b7.js" type="text/javascript"></script>
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/pcf.bundle-582a4e04bd.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/pcf.bundle-582a4e04bd.js" type="text/javascript"></script>
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/pcf-extended.bundle-b0e01b5622.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/pcf-extended.bundle-b0e01b5622.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
|
|
<!-- EB - local firefly to override all other css
|
|
<style>
|
|
html,input{line-height:1.15}[type=submit],a{text-decoration:none}[type=submit],form{margin-bottom:1.5rem}a,input{touch-action:manipulation}body,html,img,input{max-width:100%}.db,article,main,section{display:block}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}a{background-color:transparent;-webkit-text-decoration-skip:objects;color:#15c}strong{font-weight:inherit;font-weight:bolder}img{border-style:none}input{font-family:sans-serif;margin:0;overflow:visible}[type=submit]{-webkit-appearance:button;background-color:#0f65ef;border:none;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);color:#fff;cursor:pointer;padding:.4rem;border-radius:3px;outline:0}[type=submit]::-moz-focus-inner{border-style:none;padding:0}[type=submit]:-moz-focusring{outline:ButtonText dotted 1px}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}html{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-overflow-style:scrollbar;font-size:100%}*,:after,:before{box-sizing:inherit}body,html{background-color:#d7e1e6;height:100%;width:100%}body{margin:0;min-width:auto!important;padding:0}.wrapper{width:auto!important}a:focus,a:hover{color:#900}h1,h2,h3{font-size:1.25rem;font-weight:500;margin:1rem 0}input{font-size:1rem;width:100%;padding:.4rem;background-color:#fff;background-image:none;border:1px solid #a5b9c8;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}[type=submit]:focus,[type=submit]:hover{background-color:#093c8f;color:#fff}.wrapper{margin-left:auto;margin-right:auto;max-width:60rem;padding:1rem}.bg-ocean-blue-500{background-color:#004669;color:#fff}.bg-teal-400{background-color:#007d7d;color:#fff}.bg-logo{background-color:#002a5c;color:#fff}.bg-white{background-color:#fff;color:#212121}.dn{display:none}.cf:after{content:"";display:block;clear:both}.fs1{font-size:.8rem}.fs3{font-size:1.2rem}.h-bg-blue:focus,.h-bg-blue:hover{background-color:#15c;color:#fff}.list-nb{list-style:none}.pa0{padding:0}.pa2{padding:.5rem}.pa3{padding:1rem}.pt2{padding-top:.5rem}.px2{padding-left:.5rem;padding-right:.5rem}.ma0{margin:0}.my2{margin-top:.5rem;margin-bottom:.5rem}.mx-auto{margin-right:auto;margin-left:auto}.bs1{box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24)}.ta-c{text-align:center}.w-80{flex-basis:80%;max-width:80%;width:80%}.w-auto{flex-basis:auto;max-width:none;width:auto}.max-w-100{max-width:100%}@media (min-width:45em){input{width:auto}.m-db{display:block}.m-dn{display:none}.m-fx{display:-webkit-box;display:flex}.m-fx-ai-c{-webkit-box-align:center;align-items:center}.m-fx-jc-sb{-webkit-box-pack:justify;justify-content:space-between}.m-fx-w-w{flex-wrap:wrap}.m-fr{float:right}.m-fs5{font-size:2.4rem}.m-px2{padding-left:.5rem;padding-right:.5rem}.m-ml3{margin-left:1rem}.m-mt3{margin-top:1rem}.m-w-33{flex-basis:33%;max-width:33%;width:33%}.m-w-50{flex-basis:50%;max-width:50%;width:50%}.m-w-70{flex-basis:70%;max-width:70%;width:70%}}
|
|
</style>
|
|
-->
|
|
|
|
<!-- HL - tweaks -->
|
|
<style>
|
|
.bg-blue-400{background-color:#002a5c;color:#fff}
|
|
.home_title {font-family:"HelveticaNeueLT", "Segoe UI", Helvetica, Arial, sans-serif;}
|
|
.home_tagline {font-family:"HelveticaNeueLT", "Segoe UI", Helvetica, Arial, sans-serif;}
|
|
|
|
.homepage_title {
|
|
font-family: "HelveticaNeueLT", "Segoe UI", Helvetica, Arial, sans-serif;
|
|
/* font-size: 1.6em; */
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.fs2{font-size:1.0rem}
|
|
|
|
.fs4{font-size:1.8rem}
|
|
|
|
.topic_lg p:first-child{
|
|
font-size: larger;
|
|
}
|
|
|
|
#LandingPage {
|
|
background: #002a5c;
|
|
}
|
|
|
|
#articleUtil {
|
|
float: right;
|
|
/* hl */
|
|
width: 33.3%;
|
|
/* margin-top: 20px; */
|
|
}
|
|
|
|
.w-70 {
|
|
flex-basis: 70%;
|
|
max-width: 70%;
|
|
width: 70%;
|
|
}
|
|
|
|
.m-w-70 {
|
|
flex-basis: 70%;
|
|
max-width: 70%;
|
|
width: 70%;
|
|
}
|
|
|
|
.w-32 {
|
|
flex-basis: 32%;
|
|
max-width: 32%;
|
|
width: 32%;
|
|
}
|
|
|
|
.m-w-32 {
|
|
flex-basis: 32%;
|
|
max-width: 32%;
|
|
width: 32%;
|
|
}
|
|
|
|
.m-w-80 {
|
|
flex-basis: 80%;
|
|
max-width: 80%;
|
|
width: 80%;
|
|
}
|
|
.mx1 {
|
|
margin-left:.25rem;
|
|
margin-right:.25rem;
|
|
}
|
|
|
|
.mx2 {
|
|
margin-left:.5rem;
|
|
margin-right:.5rem;
|
|
}
|
|
|
|
.ml2 {
|
|
margin-left: .5rem;
|
|
}
|
|
.ml3 {
|
|
margin-left: 1rem;
|
|
}
|
|
.mb3 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
.pb1 {
|
|
padding: .25rem;
|
|
}
|
|
.pb2 {
|
|
padding: .5rem;
|
|
}
|
|
.pb3 {
|
|
padding: 1rem;
|
|
}
|
|
.fw5 {
|
|
font-weight: 500;
|
|
}
|
|
.fw6 {
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (min-width:45em) {
|
|
#ssa_search {
|
|
margin-right: 0px;
|
|
margin-left: 10px;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
|
|
}
|
|
}
|
|
|
|
#ssa_search {
|
|
display: flex;
|
|
/* float: right; */
|
|
/* width: 325px; */
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.my1 {
|
|
margin-top:.25rem;
|
|
margin-bottom:.25rem;
|
|
}
|
|
|
|
@media (max-width: 37.5em) {
|
|
/* #ssa_search {
|
|
margin-right: 0px;
|
|
margin-left: 40px;
|
|
} */
|
|
.btn {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.center_topic {
|
|
/*display: flex; */
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.home_title_caption {
|
|
top: 18px;
|
|
}
|
|
body, html {
|
|
font-size: 110%;
|
|
}
|
|
|
|
</style>
|
|
|
|
<!-- Start landing page -->
|
|
|
|
<main class="bg-white pa0" id="content" role="main">
|
|
|
|
|
|
<!--
|
|
<div id="LandingPageSearch">
|
|
<div class="grid">
|
|
|
|
<div class="home_title">
|
|
<section class="bg-blue-400">
|
|
<h1 style="line-height:unset">Questions?</h1>
|
|
<h2 class="home_title_caption hide-phone"></h2>
|
|
<h2 class="home_title_caption show-phone"></h2>
|
|
</section>
|
|
|
|
</div>
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<article>
|
|
<section class="cf fs3 px2 wrapper">
|
|
<h3 class="fs4 ta-c homepage_title">Most Asked Questions</h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ul class="list-nb pa0">
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-01951" class="contentLinks fw6">How much will the COLA amount be for 2025 and when will I receive it?</a></li>
|
|
|
|
|
|
|
|
<!-- How to manually add FAQ link to top of list (but below COLA FAQ if present)
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-XXXXX" class="contentLinks fw6"></a>
|
|
1. Create an English language snippet containing the FAQ question.
|
|
2. Copy the sample <li> item two lines above.
|
|
3. Replace XXXXX with desired KA number.
|
|
4. Insert the line below line 32 in the order you want it to appear.
|
|
4. Save this file.
|
|
-->
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-10037" class="contentLinks fw6">How can I get help from Social Security?</a></li>
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-10018" class="contentLinks fw6">What should I do if I receive a call from someone claiming to be a Social Security employee?</a></li>
|
|
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-01951" class="contentLinks fw6">How much will the COLA amount be for 2025 and when will I receive it?</a>
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-02083" class="contentLinks fw6">Who is eligible to receive Social Security survivors benefits and how do I apply?</a>
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-01891" class="contentLinks fw6">How do I apply for Social Security retirement benefits?</a>
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-01735" class="contentLinks fw6">How do I get a replacement Medicare card? </a>
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-02471" class="contentLinks fw6">Must I pay taxes on Social Security benefits?</a>
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pa2 pb2"><a href="/en-US/Topic/article/KA-01981" class="contentLinks fw6">How do I change or correct my name on my Social Security number card?</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</section>
|
|
|
|
<section class="px2 wrapper">
|
|
<h3 class="fs4 ta-c homepage_title mb3">Most Browsed Topics</h3>
|
|
<div class="m-fx m-fx-w-w m-fx-jc-sb">
|
|
|
|
|
|
|
|
|
|
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01093">
|
|
<img class="hide-phone" src="/topic_ss_card.png">
|
|
<div class="pa3">
|
|
<p><strong>Social Security Number</strong></p>
|
|
<p>Apply, replace, and protect your Social Security card and number.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01150">
|
|
<img class="hide-phone" src="/topic_online_services.png">
|
|
<div class="pa3">
|
|
<p><strong>Online Services</strong></p>
|
|
<p>Replace a Social Security card, apply for benefits, appeals, and more.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01090">
|
|
<img class="hide-phone" src="/topic_retirement.png">
|
|
<div class="pa3">
|
|
<p><strong>Retirement</strong></p>
|
|
<p>Understand and apply for retirement benefits.</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<h3 class="fs4 ta-c homepage_title mb3">More Topics</h3>
|
|
<div class="m-fx m-fx-w-w m-fx-jc-sb">
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01092">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Medicare</strong></p>
|
|
<p>What is Medicare, when to apply, and help with costs.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01095">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>my Social Security</strong></p>
|
|
<p>Create and manage your account.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01091">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Spouses, Children, Survivors</strong></p>
|
|
<p>Who can get benefits and how to apply.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01089">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Disability (SSDI)</strong></p>
|
|
<p>Apply for Social Security disability benefits.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01097">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Your Social Security Payments</strong></p>
|
|
<p>Receive and understand your Social Security payments.</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01094">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Supplemental Security Income (SSI)</strong></p>
|
|
<p>Understand and apply for SSI.</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div class="center_topic">
|
|
<a class="bg-logo db h-bg-blue my1 m-w-100" href="/en-US/topic/?id=CAT-01098">
|
|
<!-- <img src="/topic_placeholder.jpg"> -->
|
|
<div class="pa3">
|
|
<p><strong>Other Topics</strong></p>
|
|
<p>Helpful information for: Representative Payees, Prisoners, Non-Citizens, Taxes, and other general questions.</p>
|
|
</div>
|
|
</a>
|
|
|
|
<!--
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01093">
|
|
<img src="/topic_placeholder.jpg">
|
|
<div class="pa3">
|
|
<p><strong>topic title</strong></p>
|
|
<p>Description</p>
|
|
</div>
|
|
</a>
|
|
<a class="bg-logo db h-bg-blue my1 m-w-33" href="/en-US/topic/?id=CAT-01093">
|
|
<img src="/topic_placeholder.jpg">
|
|
<div class="pa3">
|
|
<p><strong>topic title</strong></p>
|
|
<p>Description</p>
|
|
</div>
|
|
</a> -->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
</article>
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/pcf-loader.bundle-f4a0e619b8.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/pcf-loader.bundle-f4a0e619b8.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="pp-native-controls-react-root"></div>
|
|
<script>window._nativeControlConfig = { "publicPath":"https://gov.content.powerapps.us/resource/powerappsportal/controls", "versions": {"pcf_loader":"0.0.31","pcf_controls":"3.10.0","mf_shared":"0.2.11","host":"0.9.2","data_grid":"1.6.8","controls_fluent_v9":"0.0.34"} }</script>
|
|
<script defer="defer" src="https://gov.content.powerapps.us/resource/powerappsportal/controls/host/main.b26f42703f.chunk.js"></script>
|
|
|
|
|
|
|
|
<!-- <style>
|
|
.footer {
|
|
border-top: 1px solid #bbb;
|
|
font-size: 0.8em;
|
|
padding: 1em 1em 3em;
|
|
text-align: center;
|
|
background: #d7e1e6;
|
|
}
|
|
</style>
|
|
<footer>
|
|
<!-- WCMS TESTING -- Enable a dev version of the WCMS footer in an
|
|
orphaned production test page named WCMS Testing -->
|
|
|
|
|
|
<ssa-footer><noscript><footer class="fs1 print-dn" id="footer" role="contentinfo"><div class="wrapper"><a class="db" href="/menu#footer">Footer menu</a></div></footer></noscript></ssa-footer><script src="https://ssa.gov/legacy/components/dist/ssa-footer.js"></script>
|
|
|
|
<!--
|
|
</footer>
|
|
-->
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function trackCopilotCustomUsage(botSchema) {
|
|
const request = {
|
|
botSchemaName: botSchema
|
|
}
|
|
var json = JSON.stringify(request);
|
|
shell.ajaxSafePost({
|
|
type: "POST",
|
|
contentType: "application/json",
|
|
url: "/_services/copilot/TrackUsage",
|
|
data: json
|
|
}).done(function () {
|
|
}).fail(function (jqXhr) {
|
|
});
|
|
}
|
|
|
|
function findAndLogCustomCopilotUsage() {
|
|
const pageSource = document.documentElement.outerHTML;
|
|
const customPvaBotWebchatRegex = /api\.(preprod\.|test\.)?powerplatform\.(com|us|cn|appsplatform\.us)\/powervirtualagents\/botsbyschema\/([^/]+)\/directline\/token/;
|
|
const customPvaBotIframeRegex = /powerva\.microsoft\.com\/environments\/([0-9a-fA-F\-]+)\/bots\/([^/]+)\/webchat/;
|
|
const omniChannelRegex = /livechatwidget\/scripts\/LiveChatBootstrapper\.js/;
|
|
|
|
const matchPvaBotWebchat = pageSource.match(customPvaBotWebchatRegex);
|
|
if (matchPvaBotWebchat && matchPvaBotWebchat[3]) {
|
|
trackCopilotCustomUsage(matchPvaBotWebchat[3]);
|
|
}
|
|
|
|
const matchPvaBotIframe = pageSource.match(customPvaBotIframeRegex);
|
|
if (matchPvaBotIframe && matchPvaBotIframe[2]) {
|
|
trackCopilotCustomUsage(matchPvaBotIframe[2]);
|
|
}
|
|
|
|
const matchOmniChannel = pageSource.match(omniChannelRegex);
|
|
if (matchOmniChannel && matchOmniChannel[0]) {
|
|
trackCopilotCustomUsage("omnichannelWidget");
|
|
}
|
|
}
|
|
|
|
window.addEventListener("load", function () {
|
|
findAndLogCustomCopilotUsage();
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/bootstrap.bundle-105a4995b8.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/bootstrap.bundle-105a4995b8.js" type="text/javascript"></script>
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/postpreform.bundle-184c77da50.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/postpreform.bundle-184c77da50.js" type="text/javascript"></script>
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/app.bundle-a9e4fdb602.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/app.bundle-a9e4fdb602.js" type="text/javascript"></script>
|
|
|
|
<script onerror="javascript: var target = event.target; var script = document.createElement('script'); script.crossOrigin = target.crossOrigin; script.src = '/dist/default-1033.moment_2_29_4.bundle-eda4e638fd.js'; script.type = 'text/javascript'; target.insertAdjacentElement('afterend',script);" src="https://gov.content.powerapps.us/resource/powerappsportal/dist/default-1033.moment_2_29_4.bundle-eda4e638fd.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
//this event will update the title of the page based on active breadcrumb
|
|
$('.breadcrumb').ready(function () {
|
|
if ($('.breadcrumb').is(':visible')) {
|
|
document.querySelector('title').innerHTML = ($('.breadcrumb > li.active').text() + "");
|
|
}
|
|
});
|
|
|
|
function GoToNewEditor() {
|
|
var editCmsUrlSegment = "EditInCms";
|
|
var currentUrl = window.location.href;
|
|
if (currentUrl.indexOf('?') > -1) {
|
|
var urlSegments = currentUrl.split("?");
|
|
window.location.href = window.location.origin + '/' + editCmsUrlSegment + window.location.pathname + '?' + urlSegments[1];
|
|
}
|
|
else {
|
|
window.location.href = window.location.origin + '/' + editCmsUrlSegment + window.location.pathname;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
navigator.serviceWorker.getRegistrations().then(function(registrations) {
|
|
for(let registration of registrations) {
|
|
registration.unregister();
|
|
}}).catch(function(err) {
|
|
console.log('Service Worker unregister action failed: ', err);
|
|
});
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
<!--Start Show Session Expire Warning Popup here -->
|
|
|
|
</body>
|
|
</html>
|
|
<!-- Generated at 3/16/2025 1:38:05 AM -->
|
|
<!-- Page OK -->
|