https://www.gwids.cisa.gov/WPSWelcome/

Eingereichte URL:
https://www.gwids.cisa.gov/WPSWelcomeUmgeleitet
Bericht beendet:
LinkText
https://www.cisa.gov/wpshttps://www.cisa.gov/wps
https://apps.apple.com/us/app/pts-dialer/id1418070846Apple App Store
https://play.google.com/store/apps/details?id=com.gdit.ptsclient&hl=en_US&gl=USGoogle Play Store
https://www.cisa.gov/about-ptshttps://www.cisa.gov/about-pts
https://www.cisa.gov/getshttps://www.cisa.gov/gets
https://www.cisa.gov/tsphttps://www.cisa.gov/tsp

JavaScript-Variablen · 68 gefunden

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
addEventfunction
removeEventfunction
BOOMR_mqobject
BOOMR_API_keystring
BOOMRobject
theFormobject
__doPostBackfunction

Konsolenprotokoll-Meldungen · 0 gefunden

HTML

<!DOCTYPE html><html lang="en"><head><link href="../App_Themes/Default/Styles/1MasterStylesGray.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/2TopMenuBlue.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/AjaxStyles.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/FormStyles.css" type="text/css" rel="stylesheet"><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>
	Welcome to WPS
</title>

  <style type="text/css">
    html,
    body {
      height: 100%;
      margin: 0;
      overflow: hidden
    }

    .no-bdr {
      margin-left: 0;
      margin-right: 0;
    }

    .banner-box {
      flex: 0 0 100%;
      overflow: hidden
    }

    .cisa-logo {
      width: 100px;
      height: 100px;
      background-image: url(/Content/assets/CISA_Logo_Color_SVG-June2021.svg);
      background-color: transparent;
      background-position: 8px 5px;
      background-size: 80px 80px;
      background-repeat: no-repeat;
      display: inline-block;
      float:left; 
    }

    .logo {
      width: 500px;
      height: 100px;
      display: inline-block;
      padding-top: 5px;
      cursor: pointer;
    }

    .logo span.logo-text-wrap {
      font-size: 12px;
      line-height: normal;
      float: left;
      text-align: left;
      font-family: Arial, sans-serif;
      color: white;
      position:relative;
      top:4px;
    }

    .logo a.logo-text {
      font-weight: 500;
      font-family: "Times New Roman", Georgia, Serif;
      font-size: 26px;
      color: white;
      text-decoration: none;
      display: inline-block;
    }

    .logo .logo-text2 {
      font-family: "ITC Franklin Gothic", Arial, sans-serif;
      font-size:14px;
      padding-left:1px;
      color: white;
      text-decoration: none;
      display: inline-block;
    }

    .logo-bgd {
      margin-bottom: -1100px;
      /*width: 0;
      height: 0;
      border-left: 310px solid #006088;
      border-right: 70px solid transparent;
      border-bottom: 70px solid #006088;*/
    }

    .menu-bgd {
      /*margin-top: 30px;
      margin-left: 350px;
      height: 0;
      border-left: 40px solid transparent;
      border-right: 100% solid #880066;
      border-top: 40px solid #880066;*/
    }

    .banner {
      /*margin-top: -70px;*/
      /*height: 100px;*/
            height: 120px;
      /*background-color: transparent;
      background-image: url(/Content/assets/left-trans.png);
      background-position: -100px 0;
      background-size: 1071px 80px;
      background-repeat: no-repeat;*/
    }

    .banner-tail {
      /*margin-top: -83px;
      margin-left: 971px;
      height: 100px;
      background-color: transparent;
      background-image: url(/Content/assets/right-trans.png);
      background-size: 300px 80px;
      background-repeat: repeat-x;*/
    }

    .wrn {
    font-weight: 600;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    color: red;
    text-align: right;
    /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
    position: relative;
    top: 9px;
    /* padding-right: 20px; */
    /* background-color: #edf7ff; */
    /* display: inline-block; */
    text-align: center;
    /* padding-left: 10px; */
    }

    .foot {
      position: absolute;
      width: 100%;
      background-color: #eee;
      font-size: 10px;
      padding: 0 20px 0 0;
      height: 20px;
      bottom: 0px;
      box-sizing: border-box;
    }

    .foot-lnk {
      font-size: 10px;
      padding: 0;
      text-decoration: none;
    }

    .foot-lnk:hover {
      text-decoration: underline;
    }

    /* MOBILE PAGES HEADERS */
    @media only screen and (max-width: 482px) {
      .logo {
        margin-bottom: 26px;
        width: 75%;
        display: inline-block;
      }
    }

    @media only screen and (max-width: 364px) {
      .cisa-logo {
        height: 89px;
      }
      .logo {
        margin-bottom: 26px;
        width: 67%;
        display: inline-block;
      }
    }
  </style>

  <script type="text/javascript">

      // Allow multiple onload, onresize, etc. events to be added from nested pages
      var addEvent = function(elem, type, eventHandle) {
          if (elem == null || elem == undefined) return;
          if (elem.addEventListener) {
              elem.addEventListener(type, eventHandle, false);
          } else if (elem.attachEvent) {
              elem.attachEvent("on" + type, eventHandle);
          } else {
              elem["on" + type] = eventHandle;
          }
      };

      // If necessary, remove previously added events from nested pages
      var removeEvent = function(elem, type, eventHandle) {
          if (elem == null || elem == undefined) return;
          if (elem.removeEventListener) {
              elem.removeEventListener(type, eventHandle, false);
          } else if (elem.detachEvent) {
              elem.detachEvent("on" + type, eventHandle);
          } else {
              elem["on" + type] = null;
          }
      };

  </script>

  

  <style type="text/css">
    * {
      box-sizing: border-box;
    }

    ol li {
      margin-top: 2px;
      margin-bottom: 6px;
    }

    ul li {
      margin-top: 2px;
      margin-bottom: 6px;
    }

    .main {
      float: left;
      width: 98%;
      margin: 0 1%;
      padding: 0 20px;
      overflow: hidden;
    }

    .left {
      float: left;
      width: 68%;
      padding: 10px 20px;
    }

    .right {
      float: right;
      width: 30%;
      padding: 10px 20px;
    }

    .flex-container {
      display: flex;
      flex-direction: row;
    }

    .flex-container2 {
      display: flex;
      flex-direction: row;
      text-align: center;
    }

    @media (max-width: 800px) {
      .flex-container {
        flex-direction: column;
      }

      .flex-container2 {
        flex-direction: row;
      }
    }

    .flex-item-left {
      padding: 10px;
      flex: 68%;
    }

    .flex-item-right {
      padding: 10px;
      flex: 30%;
    }

    .flex-item-left2 {
      padding: 10px;
      flex: 50%;
      align-self: flex-end;
    }

    .flex-item-right2 {
      padding: 10px;
      flex: 50%;
      align-self: flex-end;
    }

    .subheader {
      /*float: left;*/
      width: 98%;
      margin: 0 1%;
      padding: 0 20px;
      overflow: hidden;
      margin-top: 10px;
      margin-bottom: 16px;
      color: #000;
    }

    .footer {
      float: left;
      width: 98%;
      overflow: hidden;
      margin-top: 7px;
    }

    .inline {
      display: inline-block;
    }

    .tileTop {
      margin-top: 8px;
    }

    .icon {
      height: 20px;
      margin-right: 10px;
      display: block;
    }

    .title {
      color: #242424;
      font-size: 20px;
      font-weight: 600;
      position: relative;
      top: 8px;
      font-family: 'Source Sans Pro', Arial, sans-serif;
      padding-bottom: 12px;
    }

    a:link, a:visited, a:hover, a:active {
      text-decoration: none;
    }

    .subtitle {
      font-family: 'Source Sans Pro', Arial, sans-serif;
      font-size: 18px;
      color: #242424;
      font-weight: 600;
    }

    .sub-subtitle {
      font-family: 'Source Sans Pro', Arial, sans-serif;
      font-size: 16px;
      color: #242424;
      font-weight: 400;
    }

    .subnav-title {
      font-family: 'Source Sans Pro', Arial, sans-serif;
      font-size: 18px;
      color: #242424;
      font-weight: 400;
    }

    .description {
      padding-bottom: 8px;
      display: block;
    }

    .badge {
      margin-bottom: 10px;
      display: block;
      float: left;
    }

    .wrapper {
      display: flex;
      justify-content: space-around;
    }

    .grayContainer {
      background-color: #f7f7f7;
      padding: 5px 20px 20px 20px;
      border-radius: 5px;
      overflow: hidden;
      position: relative;
    }

    .boldText {
      font-weight: bold;
    }

    .feedback-warning,
    .feedback-success {
      border-width: 0px !important;
      margin: 8px 0px 15px 0px;
      font-size: 90%;
    }
  </style>

<link href="../App_Themes/Default/Styles/1MasterStylesGray.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/2TopMenuBlue.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/AjaxStyles.css" type="text/css" rel="stylesheet"><link href="../App_Themes/Default/Styles/FormStyles.css" type="text/css" rel="stylesheet">
<script>(window.BOOMR_mq=window.BOOMR_mq||[]).push(["addVar",{"rua.upush":"false","rua.cpush":"true","rua.upre":"false","rua.cpre":"false","rua.uprl":"false","rua.cprl":"false","rua.cprf":"false","rua.trans":"SJ-e00eab97-2091-4623-9954-89dc435f588d","rua.cook":"false","rua.ims":"false","rua.ufprl":"false","rua.cfprl":"false","rua.isuxp":"false","rua.texp":"norulematch","rua.ceh":"false","rua.ueh":"false","rua.ieh.st":"0"}]);</script>
                              <script>!function(e){var n="https://s.go-mpulse.net/boomerang/";if("False"=="True")e.BOOMR_config=e.BOOMR_config||{},e.BOOMR_config.PageParams=e.BOOMR_config.PageParams||{},e.BOOMR_config.PageParams.pci=!0,n="https://s2.go-mpulse.net/boomerang/";if(window.BOOMR_API_key="Z4U2W-KKB3L-L7L2W-H6RX4-3YE6Q",function(){function e(){if(!o){var e=document.createElement("script");e.id="boomr-scr-as",e.src=window.BOOMR.url,e.async=!0,i.parentNode.appendChild(e),o=!0}}function t(e){o=!0;var n,t,a,r,d=document,O=window;if(window.BOOMR.snippetMethod=e?"if":"i",t=function(e,n){var t=d.createElement("script");t.id=n||"boomr-if-as",t.src=window.BOOMR.url,BOOMR_lstart=(new Date).getTime(),e=e||d.body,e.appendChild(t)},!window.addEventListener&&window.attachEvent&&navigator.userAgent.match(/MSIE [67]\./))return window.BOOMR.snippetMethod="s",void t(i.parentNode,"boomr-async");a=document.createElement("IFRAME"),a.src="about:blank",a.title="",a.role="presentation",a.loading="eager",r=(a.frameElement||a).style,r.width=0,r.height=0,r.border=0,r.display="none",i.parentNode.appendChild(a);try{O=a.contentWindow,d=O.document.open()}catch(_){n=document.domain,a.src="javascript:var d=document.open();d.domain='"+n+"';void(0);",O=a.contentWindow,d=O.document.open()}if(n)d._boomrl=function(){this.domain=n,t()},d.write("<bo"+"dy onload='document._boomrl();'>");else if(O._boomrl=function(){t()},O.addEventListener)O.addEventListener("load",O._boomrl,!1);else if(O.attachEvent)O.attachEvent("onload",O._boomrl);d.close()}function a(e){window.BOOMR_onload=e&&e.timeStamp||(new Date).getTime()}if(!window.BOOMR||!window.BOOMR.version&&!window.BOOMR.snippetExecuted){window.BOOMR=window.BOOMR||{},window.BOOMR.snippetStart=(new Date).getTime(),window.BOOMR.snippetExecuted=!0,window.BOOMR.snippetVersion=12,window.BOOMR.url=n+"Z4U2W-KKB3L-L7L2W-H6RX4-3YE6Q";var i=document.currentScript||document.getElementsByTagName("script")[0],o=!1,r=document.createElement("link");if(r.relList&&"function"==typeof r.relList.supports&&r.relList.supports("preload")&&"as"in r)window.BOOMR.snippetMethod="p",r.href=window.BOOMR.url,r.rel="preload",r.as="script",r.addEventListener("load",e),r.addEventListener("error",function(){t(!0)}),setTimeout(function(){if(!o)t(!0)},3e3),BOOMR_lstart=(new Date).getTime(),i.parentNode.appendChild(r);else t(!1);if(window.addEventListener)window.addEventListener("load",a,!1);else if(window.attachEvent)window.attachEvent("onload",a)}}(),"".length>0)if(e&&"performance"in e&&e.performance&&"function"==typeof e.performance.setResourceTimingBufferSize)e.performance.setResourceTimingBufferSize();!function(){if(BOOMR=e.BOOMR||{},BOOMR.plugins=BOOMR.plugins||{},!BOOMR.plugins.AK){var n="true"=="true"?1:0,t="",a="fie3vrjrfahgikqce3yabyaerztrvrdw-f-989be01e3-clienttons-s.akamaihd.net",i="false"=="true"?2:1,o={"ak.v":"39","ak.cp":"1271032","ak.ai":parseInt("765205",10),"ak.ol":"0","ak.cr":4,"ak.ipv":6,"ak.proto":"h2","ak.rid":"1a1f5e5f","ak.r":29550,"ak.a2":n,"ak.m":"dsca","ak.n":"essl","ak.bpcip":"2a09:bac5:3128:e64::","ak.cport":54802,"ak.gh":"2.17.37.124","ak.quicv":"","ak.tlsv":"tls1.3","ak.0rtt":"","ak.0rtt.ed":"","ak.csrc":"-","ak.acc":"","ak.t":"1729807478","ak.ak":"hOBiQwZUYzCg5VSAfCLimQ==2l1pdygYBVvWCTYnbn2nHNOUu64Xq7SMiL45M3OwwkP5g7YfpDceVj9KsZdEuwrMRFL4IGbsunCBZKqdQSMem+InNoHUYQtIq3uOXASgUToTy/l7mUsB2iR4rT3b2ERuCgwSKVxdZtjgyIlOdKM5pNv+EFxCplqT3Lj77IlgmDO7pgiHthmOhAyRaLgNeFS5MjorfVMXpYJuCwmGFfR5ZuWKHd+SOs7RhzhCFFMmb4nvGSSdrwnJUHlyvwYK2fyxsPKW+bzJuYgmz9njucK3+Ut5QY9u886gwUR+k4P4MemiikUVoBVSJm1pCRNx2s9p1UBSmn7nzUXCJ5vtC/bNNHqo8od0gB5LDvqiZxdhSYOJTh3viZnrClVKiRyT7sgQTxPvB+6cLQ+2AZmpI7HJ8D6Mdb2x6HR7tHAbRtPzq7I=","ak.pv":"16","ak.dpoabenc":"","ak.tf":i};if(""!==t)o["ak.ruds"]=t;var r={i:!1,av:function(n){var t="http.initiator";if(n&&(!n[t]||"spa_hard"===n[t]))o["ak.feo"]=void 0!==e.aFeoApplied?1:0,BOOMR.addVar(o)},rv:function(){var e=["ak.bpcip","ak.cport","ak.cr","ak.csrc","ak.gh","ak.ipv","ak.m","ak.n","ak.ol","ak.proto","ak.quicv","ak.tlsv","ak.0rtt","ak.0rtt.ed","ak.r","ak.acc","ak.t","ak.tf"];BOOMR.removeVar(e)}};BOOMR.plugins.AK={akVars:o,akDNSPreFetchDomain:a,init:function(){if(!r.i){var e=BOOMR.subscribe;e("before_beacon",r.av,null,null),e("onbeacon",r.rv,null,null),r.i=!0}return this},is_complete:function(){return!0}}}}()}(window);</script><link href="https://s.go-mpulse.net/boomerang/Z4U2W-KKB3L-L7L2W-H6RX4-3YE6Q" rel="preload" as="script"><script id="boomr-scr-as" src="https://s.go-mpulse.net/boomerang/Z4U2W-KKB3L-L7L2W-H6RX4-3YE6Q" async=""></script></head>
<body>

<div id="pageWrap" style="height: 100%;">

    <div class="row no-bdr">
   <a class="cisa-logo" alt="CISA logo" href="/gwids"></a> 
      <div class="logo">
        &nbsp;
      </div>
    </div>

    <div class="row no-bdr" id="wrapper" style="height:100%;margin-top:-133px;background-color:#00416A">
      <div style="position:absolute;top:90px;bottom:0px;width:100%;padding:0;" id="content">
        <div style="overflow:auto;height:100%;margin-bottom:-142px;border:none;padding-bottom:0px; padding-left: 10px; padding-right: 10px;" id="content-inner">
          <form name="aspnetForm" method="post" action="./" id="aspnetForm" style="width:100%;">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="yJ9gUiwS7q+fbILM0bvqpz3u4Vr8Vc38ug+aiBaBT+sS0UGpqGUaoYMmeDNCEPRzeYqlxOUz5rofWX+b/w4te2hblfz+rHZ+YfF5SBm5jdM=">
</div>

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>


<script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZPbyRV6qp7AtrgGz_m6Khk187eTCswOQOqe_0ujnhWjldSsEeB7Qesg5-QSJu9BWXA2&amp;t=638610871965203766" type="text/javascript"></script>


<script src="/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvr40rTxT9aVrumNJqsvjvotESFszVmnJzXZEoUZRjEvG0s5TtjMGelDyq4uOwAeZEqTYy5ugw_oq2bNZD0_Q3A7eUfKyCqtjiYk4Tc_vSo22dsf9fXquKfy6CqIDXK7BTYI-CJt1U9D_mEu8F_uMzqc1&amp;t=ffffffffb201fd3f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLHwFA85kr-KA_BApOJUHgro8OAgmq7oPMRbkUZvPAVRdZ-Phb8uXPtc8R-GlpP23jBl4AfIiGmELOyT0mm8M3YtCCRrWj10K5KuCg2v4KYDHXZR2sqvRYyPOmp63-WZjGoR6Yk9DELO27FvYZlAqBI1&amp;t=ffffffffb201fd3f" type="text/javascript"></script>
<div>

	<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="74CD847D">
	<input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0">
	<input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0">
	<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="">
</div>
            

  <script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
//]]>
</script>


  <div class="form" style="max-width: 960px; margin: 0px auto; border-width: 0px; background-color: transparent;">
    <h1 class="title">Wireless Priority Service (WPS) activated</h1>
    <div>
      <div class="sub-subtitle">
        WPS has been added to this cellular phone. It is suggested you restart the phone before attempting to use WPS for the first time.
      </div>
    </div>
    <div>
      <h2 class="subtitle">WPS Usage</h2>
      <div class="sub-subtitle">
        <ul>
          <li>To use WPS, dial *272 plus the 10-digit destination number</li>
          <li>To verify activation, place a WPS call to the Familiarization Line by dialing <a href="tel:*2727038183924" rel="noopener noreferrer">*272 703-818-3924</a></li>
          <li>Do not use WPS to dial 911</li>
        </ul>
        <span style="margin-top: 0px">For additional information: <a href="https://www.cisa.gov/wps" class="link" target="_blank" rel="noopener noreferrer">https://www.cisa.gov/wps</a></span>
      </div>
      <br>
      <div class="sub-subtitle" style="padding-bottom: 10px">
        The Federal Communications Commission requires that as a WPS user you be notified that your wireless service provider is under contract to provide WPS call information
      </div>
    </div>

    <div id="ctl00_ContentPlaceHolder_PanelPTSDialer">
	
      <div class="grayContainer flex-container">
        <div class="flex-item-left">
          <h2 class="subtitle">PTS Dialer Makes GETS and WPS Easier</h2>
          <div class="sub-subtitle">
            When you place a call using the PTS Dialer app, it automatically adds the GETS access number, your GETS PIN, and your destination number.
              The destination number can be entered with the keypad or selected from your contacts or recent calls.
              In addition, the WPS/ GETS Test Call feature helps when making your regular test calls.
          </div>

          <h3 class="sub-subtitle boldText">Benefits</h3>
          <div class="sub-subtitle">
            <ul>
              <li>Easy to use in emergency conditions</li>
              <li>Significantly reduces user dialing errors</li>
              <li>Speeds up calling process</li>
              <li>Offers choice of call type: <span class="boldText">WPS, GETS,</span> or <span class="boldText">WPS+GETS</span></li>
            </ul>

            The PTS Dialer app can be found in the <a href="https://apps.apple.com/us/app/pts-dialer/id1418070846" class="link" target="_blank" rel="noopener noreferrer">Apple App Store</a>
            and the <a href="https://play.google.com/store/apps/details?id=com.gdit.ptsclient&amp;hl=en_US&amp;gl=US" class="link" target="_blank" rel="noopener noreferrer">Google Play Store</a>.
            <br>
            More information can be found at <a href="https://www.cisa.gov/about-pts" class="link" target="_blank" rel="noopener noreferrer">https://www.cisa.gov/about-pts</a>.
          </div>

          <div class="badge" style="padding-top: 10px;">
            <a id="ctl00_ContentPlaceHolder_HyperlinkAppleStore" title="Download on the Apple App Store" class="link" rel="noopener noreferrer" href="https://apps.apple.com/us/app/pts-dialer/id1418070846" target="_blank">
								  <img height="35" alt="Download on the Apple App Store" src="/Application_Layout/Images/Icons/apple-app-store-badge.png">
            </a>
          </div>

          <div class="badge" style="padding-top: 10px; padding-left: 10px;">
            <a id="ctl00_ContentPlaceHolder_HyperlinkAndroidStore" title="Get it on the Google Play Store" class="link" rel="noopener noreferrer" href="https://play.google.com/store/apps/details?id=com.gdit.ptsclient&amp;hl=en_US&amp;gl=US" target="_blank">
								  <img height="35" alt="Get it on the Google Play Store" src="/Application_Layout/Images/Icons/google-play-badge.png">
            </a>
          </div>
        </div>
        <div class="flex-container2 flex-item-right">

          <div class="flex-item-left2">
            <img src="/Application_Layout/Images/Icons/PTSDialer-logo-iOS.png" alt="PTS Dialer Logo" height="50">
            <br>
            <span class="boldText">PTS Dialer logo</span>
          </div>


          <div class="flex-item-right2">
            <img src="/Application_Layout/Images/Icons/PTSDialer-mockup.png" alt="PTS Dialer App" height="250">
            <br>
            <span class="boldText">PTS Dialer app</span>
          </div>

        </div>
      </div>
    
</div>

    <div>
      <h2 class="subtitle">Other priority services</h2>
      <div class="sub-subtitle">
        <span class="boldText">Government Emergency Telecommunications Service (GETS) for priority landline calls</span>
        <br>
        GETS provides subscribers with priority access and prioritized processing in the local and long-distance segments of landline telephone networks.
        Subscribers are issued a Personal Identification Number (PIN) that assigns priority status to calls in service provider networks when used.
        <br>
        More information about GETS can be found at <a href="https://www.cisa.gov/gets" class="link" target="_blank" rel="noopener noreferrer">https://www.cisa.gov/gets</a>
      </div>
      <br>
      <div class="sub-subtitle">
        <span class="boldText">Telecommunications Service Priority (TSP) for priority restoration and installation of voice and data circuits</span>
        <br>
        TSP is a Federal Communications Commission (FCC) program, managed by CISA, which mandates that service providers prioritize voice and
        data circuits provisioning and restoration requests made by organizations with national security and emergency preparedness missions.
        <br>
        More information about TSP can be found at <a href="https://www.cisa.gov/tsp" class="link" target="_blank" rel="noopener noreferrer">https://www.cisa.gov/tsp</a>

      </div>
    </div>

    <div class="footer">
      <h2 class="subtitle">Help is available 24/7</h2>
      <div class="sub-subtitle">
        If you have any questions regarding making a GETS call, please contact 24 Hour User Assistance at <a href="tel:18008184387" rel="noopener noreferrer">1-800-818-GETS (4387)</a>.
       </div>
    </div>
    <br>

    <!-- Force div to stretch to full height of grid -->
    <div style="height: 0px; overflow: hidden; clear: both;">&nbsp;</div>
  </div>

  <br>


          

<script type="text/javascript">
//<![CDATA[

theForm.oldSubmit = theForm.submit;
theForm.submit = WebForm_SaveScrollPositionSubmit;

theForm.oldOnSubmit = theForm.onsubmit;
theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
//]]>
</script>
</form>
        </div>
      </div>
    </div>

  </div>



</body></html>