www.signupgenius.com Open in urlscan Pro
2606:4700:10::6816:939  Public Scan

Submitted URL: https://www.signupgenius.com/go/StJoseph-Burbank
Effective URL: https://www.signupgenius.com/go/stjoseph-burbank
Submission: On July 12 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST /index.cfm?go=s.PreProcessSignup

<form action="/index.cfm?go=s.PreProcessSignup" method="post" id="signupForm" class="ng-pristine ng-valid">
  <link rel="stylesheet" href="/css/angular/ngmodal-v1.css">
  <style>
    /* Still current */
    .tb-shadow {
      filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.45));
    }

    .tb-shadow-safari {
      -webkit-filter: drop-shadow(0 12px 1.5em rgba(0, 0, 0, 0.35));
      /*Fix for Safari's harsh shadow's*/
    }

    .tb-shadow-half {
      filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.45));
    }

    t .tb-shadow-half-safari {
      -webkit-filter: drop-shadow(0 6px 0.75em rgba(0, 0, 0, 0.35));
      /*Fix for Safari's harsh shadow's*/
    }

    .rendering {
      image-rendering: auto;
    }
  </style>
  <script>
    (function() {
      var desktopSignup = function($scope, $timeout) {
        $scope.image1 = {};
        $scope.image2 = {};
        $scope.image3 = {};
        var ua = navigator.userAgent;
        /* use Chrome's shadow settings */
        $scope.tbshadow = "tb-shadow";
        $scope.tbshadowhalf = "tb-shadow-half";
        if ((ua.indexOf("Safari") > -1) && !(ua.indexOf("Chrome") > -1)) {
          $scope.tbshadow = "tb-shadow-safari";
          $scope.tbshadowhalf = "tb-shadow-safari";
        }
        $scope.image1 = {
          "imageposition": 1,
          "imageTypeId": 1,
          "THEMEIMAGE": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "pairValue": 1607114012,
          "isapproved": 1,
          "serverFilename": "4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "desktopMemberImage": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "IMAGEHEIGHT": 170,
          "id": 3046680,
          "imageUrl": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "PAIREDIMAGEWIDTH": 1300,
          "isCustomImage": 1,
          "memberimageid": 3046680,
          "imageThumbUrl": "https://images.signupgenius.com/memberImages/tn_4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "pairImage": {
            "imageTypeId": 4,
            "pairValue": 1607114012,
            "memberimageid": 3046679,
            "imageThumbUrl": "https://images.signupgenius.com/memberImages/tn_C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
            "isapproved": 1,
            "serverFilename": "C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
            "mainImagePath": "https://images.signupgenius.com/memberImages/",
            "disabled": 0,
            "mobileMemberImage": "https://images.signupgenius.com/memberImages/tn_C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
            "imageWidth": 1300,
            "desktopMemberImage": "https://images.signupgenius.com/memberImages/C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
            "imageHeight": 681,
            "imageUrl": "https://images.signupgenius.com/memberImages/C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
            "clientFilename": "Providence_Logo.jpg"
          },
          "PAIREDIMAGEFILENAME": "C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
          "mainImagePath": "",
          "stockThemeImage": "",
          "disabled": 0,
          "PAIREDIMAGEID": 3046679,
          "mobileMemberImage": "https://images.signupgenius.com/memberImages/tn_4B50B925D7035045230220D3CEC386F1_106706795.jpg",
          "IMAGECROPCOORDS": [],
          "IMAGEWIDTH": 325,
          "imagecustom": 1,
          "IMAGERATIO": 1.9,
          "imageoverrideid": 14404134,
          "clientFilename": "Providence_Logo.jpg",
          "PAIREDIMAGEHEIGHT": 681
        };
        //Displays the MaskView. It's MaskViewController is at the base of this document.
        $scope.displayMaskView = function(originalImageData, MaskViewTitle, imageKey, aspectRatio, coords) {
          $scope.MaskOpen = true;
          var confirmationWindow = $modal.open({
            templateUrl: '/view/tools/prothemeMaskwindow.html?v1.6',
            controller: MaskViewController,
            resolve: {
              originalImageData: function() {
                return originalImageData;
              },
              MaskViewTitle: function() {
                return MaskViewTitle;
              },
              aspectRatio: function() {
                return aspectRatio;
              },
              coords: function() {
                return coords;
              }
            }
          });
          confirmationWindow.result.then(function(result) {
            $scope.MaskOpen = false; // Can spawn a new Mask window
            if (result.success) {
              $scope.createCoordinates(imageKey, result.coordinates, originalImageData);
            }
          });
        };
        $scope.getImageSize = function(key, url) {
          var image = new Image();
          image.src = url;
          image.onload = function() {
            /* fix for images that do not have images set */
            $scope[key].IMAGEWIDTH = image.width;
            $scope[key].IMAGEHEIGHT = image.height;
            $scope.createCoordinates(key, $scope[key].IMAGECROPCOORDS);
          }
        }
        // This method figures out the placement, and scale of the image inside its container / mask.
        $scope.createCoordinates = function(imageKey, coordinates) {
          //Vertical align value for Templates 1 and 2 -tb 2/15/17
          try {
            $scope.col2height = $('#col2id').height();
          } catch (e) {
            $scope.col2height = 350;
          }
          $scope[imageKey].coords = coordinates;
          $scope[imageKey].containerwidth = $('#' + imageKey).width();
          $scope[imageKey].containerheight = $('#' + imageKey).height();
          $scope[imageKey].x1 = $scope[imageKey].coords[0];
          $scope[imageKey].y1 = $scope[imageKey].coords[1];
          $scope[imageKey].x2 = $scope[imageKey].coords[2];
          $scope[imageKey].y2 = $scope[imageKey].coords[3];
          $scope[imageKey].coordw = $scope[imageKey].coords[4];
          $scope[imageKey].coordh = $scope[imageKey].coords[5];
          //set coordinates
          $scope[imageKey].width = $scope[imageKey].IMAGEWIDTH;
          $scope[imageKey].height = $scope[imageKey].IMAGEHEIGHT;
          $scope[imageKey].left = ($scope[imageKey].containerwidth / $scope[imageKey].coordw) * $scope[imageKey].x1 * -1;
          $scope[imageKey].top = ($scope[imageKey].containerheight / $scope[imageKey].coordh) * $scope[imageKey].y1 * -1;
          $scope[imageKey].newwidth = ($scope[imageKey].containerwidth / $scope[imageKey].coordw * $scope[imageKey].width);
          $scope[imageKey].newheight = ($scope[imageKey].containerheight / $scope[imageKey].coordh * $scope[imageKey].height);
        }
        $scope.setupCoords = function() {
          if ($scope.image1 && $scope.image1.IMAGECROPCOORDS) {
            if ($scope.image1.IMAGEHEIGHT < 2 || $scope.image1.IMAGEWIDTH < 2) {
              /* if the image size is missing, load the image to get its size and continue there */
              var imagesize = $scope.getImageSize('image1', $scope.image1.THEMEIMAGE)
            } else {
              $scope.createCoordinates('image1', $scope.image1.IMAGECROPCOORDS);
            }
          }
          if ($scope.image2 && $scope.image2.IMAGECROPCOORDS) {
            if ($scope.image2.IMAGEHEIGHT < 2 || $scope.image2.IMAGEWIDTH < 2) {
              /* if the image size is missing, load the image to get its size and continue there */
              var imagesize = $scope.getImageSize('image2', $scope.image2.THEMEIMAGE);
            } else {
              $scope.createCoordinates('image2', $scope.image2.IMAGECROPCOORDS);
            }
          }
          if ($scope.image3 && $scope.image3.IMAGECROPCOORDS) {
            if ($scope.image3.IMAGEHEIGHT < 2 || $scope.image3.IMAGEWIDTH < 2) {
              /* if the image size is missing, load the image to get its size and continue there */
              var imagesize = $scope.getImageSize('image3', $scope.image3.THEMEIMAGE);
            } else {
              $scope.createCoordinates('image3', $scope.image3.IMAGECROPCOORDS);
            }
          }
        }
        $scope.setupCoords();
        //** Auto Rescales the crops when the window resizes **//
        //
        //This technique can be used for responsive headers
        $(window).resize(function() {
          $timeout(function() {
            $scope.setupCoords();
          }, 1);
        });
        // make fundlyurl available as an angular variable for template headers
        $scope.fundlyurl = '';
      };
      //allows angular to work with script minifiers
      desktopSignup.$inject = ['$scope', '$timeout'];
      //register controller with AngularJS
      angular.module('SUGApp').controller('desktopSignup', desktopSignup);
    }());
  </script>
  <style>
    .modal-v1 {
      color: black !important;
      display: none;
    }
  </style>
  <div id="addLockModal" class="modal-v1 fade" role="dialog">
    <div class="modal-v1-dialog">
      <div class="modal-v1-content">
        <div class="modal-v1-header">
          <button type="button" class="close" data-dismiss="modal">×</button>
          <h2>Change Lock</h2>
        </div>
        <div class="modal-v1-body">
          <p>The time to sign up for this item / event has ended. Contact the sign up creator for assistance.</p>
        </div>
        <div class="modal-v1-footer">
          <button type="button" class="btn btn-success" data-dismiss="modal">Close</button>
        </div>
      </div>
    </div>
  </div>
  <div id="modifyLockModal" class="modal-v1 fade" role="dialog">
    <div class="modal-v1-dialog">
      <div class="modal-v1-content">
        <div class="modal-v1-header">
          <button type="button" class="close" data-dismiss="modal">×</button>
          <h2>Change Lock</h2>
        </div>
        <div class="modal-v1-body">
          <p>The time to make changes to this sign up have ended. Contact the sign up creator for assistance.</p>
        </div>
        <div class="modal-v1-footer">
          <button type="button" class="btn btn-success" data-dismiss="modal">Close</button>
        </div>
      </div>
    </div>
  </div>
  <div ng-controller="desktopSignup" class="ng-scope">
    <style>
      .col-body-100 {
        width: calc(100% - 350px);
        /* This works for 325 images */
      }

      .col-image,
      .mod-1-image-1 {
        width: 325px;
        max-width: 325px;
      }
    </style>
    <style>
      /* Image column - inline for this sign up only */
      .col-image {
        margin-top: 0;
        margin-right: 25px;
        float: left;
      }

      .col-body-100 {
        float: left;
      }
    </style>
    <style>
      .col-parent {
        margin-top: 25px;
      }
    </style>
    <div class="container">
      <div class="col-parent">
        <div class="col-image">
          <!-- We are not using image masks on templates 1-4 -->
          <div id="image1">
            <img class="mod-1-image-1 zoom-in" src="https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg" alt="" border="0">
          </div>
        </div>
      </div>
      <div class="col-body-100 SUGmain" id="col2id">
        <div class="SUGbold">EH Scheduling</div>
        <h1 class="SUGHeaderText">Providence St. Joseph Medical Center - Burbank</h1>
        <p>Welcome to Providence!</p>
        <p>Please schedule your health Screen appointment now as time slots can fill up quickly.&nbsp; If your start work date is further into the future, schedule closer to that date.&nbsp; If possible, no further out than 2 weeks.&nbsp; Bring your
          completed Health Screen Packet and any vaccination records available to you.&nbsp; Depending on your records, a blood draw may be needed at this appointment.&nbsp; If you have any questions, please e-mail EHscheduling@providence.org.&nbsp;
          Note: any comments you leave in the Sign-Up are public view, not Private.</p>
        <p style="text-align: center;">Providence St. Joseph Medical Center - Burbank</p>
        <p style="text-align: center;">501 South Buena Vista Street</p>
        <p style="text-align: center;">Burbank, CA 91505</p>
        <p>Park at Visitor parking and enter at front lobby.Caregiver health is located on the 2nd floor of east tower.&nbsp; From the front Lobby: Make a left at info desk and make a right and immediate left (past the circular waiting area).&nbsp;
          Follow the signs for east tower.&nbsp; Take the long hallway leading outside through the automatic doors.&nbsp; Once outside, continue to the end of the walkway and make a right into east building.&nbsp; Upon enterering east building, you
          can turn left.&nbsp; Elevators are immediately at your left.&nbsp; Take the elevator to 2nd floor.&nbsp; Caregiver health is locatedd as you exit the elevator and nurses are located in rooms 208 and 209.&nbsp; Parking will be
          validated.&nbsp; Phone: (818) 843-5111</p>
        <strong>Location: </strong>
        <a href="https://www.google.com/maps/search/?api=1&amp;query=501+S+Buena+Vista+St+Burbank+CA+91505" title="Show Map" class="SUGlink" target="_blank">
				501 S Buena Vista St
				<div class="hrow" style="padding-left:75px;">
					501 S Buena Vista St, Burbank, CA 91505<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
				</div>
			</a>
        <p></p>
        <strong>Related files:</strong>
        <div style="padding: 10px 0 0px 10px;">
          <div width="415px">
            <a href="/index.cfm?go=s.downloadSignUpResource&amp;eToken=5DBBB5BE243A8637FD1DA9FA5AD1D9DEAFF8CB3FBB88A6CFB3B469D9BD5A8D3E7EDDA59EA762C47F49A0CA28E0DEFB06BB3C5A12EDE3FE0750EFC9DA8E" class="SUGlink enforce-wrap">
							<svg width="25" height="20" xmlns="http://www.w3.org/2000/svg">
								<path stroke="#FFFFFF" fill="#FFFFFF" id="svg_1" d="m19,10c0,-4.97057 -4.02944,-9 -9,-9s-9,4.02943 -9,9s4.02943,9 9,9s9,-4.02944 9,-9zm-16.3125,0c0,-4.03857 3.27393,-7.3125 7.3125,-7.3125s7.3125,3.27393 7.3125,7.3125s-3.27393,7.3125 -7.3125,7.3125s-7.3125,-3.27393 -7.3125,-7.3125zm8.10798,5.29551l4.5,-4.50004c0.43935,-0.43931 0.43935,-1.15162 0,-1.59097s-1.15165,-0.43935 -1.591,0l-2.57948,2.57949l0,-6.284c0,-0.62131 -0.50369,-1.125 -1.125,-1.125s-1.125,0.50369 -1.125,1.125l0,6.284l-2.57949,-2.57952c-0.43935,-0.43935 -1.15169,-0.43935 -1.59104,0c-0.21966,0.21969 -0.32949,0.50762 -0.32949,0.79551c0,0.2879 0.10983,0.57583 0.32949,0.79548l4.5,4.50004c0.43935,0.43931 1.15169,0.43931 1.591,0l0,0l0.00001,0l0,0.00001z"></path>
							</svg>
							CG Screening Packet COMPLETE 02- prior to visit forms- fillable 10.pdf 
						</a> (361KB pdf)<br>
          </div>
          <div style="clear:both;"></div>
        </div>
        <p></p>
        <table>
          <tbody>
            <tr>
              <td><strong>Created by:</strong>&nbsp;</td>
              <td>EH Scheduling</td>
              <td>
                <div style="padding-top:
				2px;">&nbsp;<a href="https://www.signupgenius.com/index.cfm?go=c.help&amp;eid=08C3CFD8FCCBF86C08&amp;cs=09CBBADC8FBB8B6D7B7C64755BCE9BBDFDCE&amp;id=33775864&amp;urlID=StJoseph-Burbank" class="SUGlink"><span class="glyphicon glyphicon-envelope" style="font-size:15px;"><span></span></span></a>
                </div>
              </td>
            </tr>
          </tbody>
        </table>
        <div class="row">
          <div class="col-md-12">
            <div style="margin-top:18px; padding-top:18px;border-top: 1px solid #FFFFFF;"> Already signed up? You can <a href="https://www.signupgenius.com/index.cfm?go=s.EditHelp&amp;urlid=stjoseph-burbank" class="SUGlink">change your sign up</a>.
            </div>
          </div>
        </div>
      </div>
      <div class="clearfix"></div>
    </div>
    <br>
  </div>
  <script>
    // header/footer updates for the menu dropdown not to overlay ads
    (function() {
      $(document).ready(function() {
        $('.nav-dropdown-menu').on('show.bs.dropdown', function() {
          $('#SUGContainer').addClass('open-horizontal');
        });
        $('.nav-dropdown-menu').on('hide.bs.dropdown', function() {
          $('#SUGContainer').removeClass('open-horizontal');
        });
      });
    })();
  </script>
  <div class="container" style="min-width:970px !important;">
    <noscript>
      <div style="border: 2px solid red; background-color: white; padding:3px;" class="redmessage">
        <!-- <div id="qtyLimitMessage" class="alert alert-danger" role="alert"> --> The sign up creator has set a maximum quantity limit of 1 for this sign up.
      </div>
    </noscript>
    <script>
      <!--
      // This allows you to check the box using the entire button
      function checkTheBox(siid) {
        var thischeck = document.getElementById('checkbox' + siid);
        if (thischeck.checked == true) {
          thischeck.checked = false;
        } else {
          thischeck.checked = true;
        }
      };
      // This resets the hidden field called 'siids' everytime you click a button
      function checkLIST(siid) {
        var cboxes = document.getElementsByName('siid');
        var idlist = '';
        var restrict = restictQuantity(siid);
        if (!restrict) {
          for (i = 0; i < cboxes.length; i++) {
            if (cboxes[i].checked == true) {
              var tempval = idlist;
              if (tempval == '') {
                var idlist = cboxes[i].value;
              } else {
                var idlist = tempval + ',' + cboxes[i].value;
              }
            }
          }
          document.getElementById('siids').value = idlist;
          saveSelectedToStorage(idlist);
        }
      };

      function restictQuantity(siid) {
        var result = false;
        // unchecking is always allowed
        if (!$('#checkbox' + siid).is(':checked')) {
          return false
        };
        if ($('input:checkbox:checked').length > 1) {
          $('#checkbox' + siid).attr('checked', false);
          $('#quantityLimitDialog').modal('show');
          result = false;
        }
        return result;
      };
      /** temporary storage for selected idlist **/
      function saveSelectedToStorage(idlist) {
        if (typeof(Storage) !== "undefined") {
          window.sessionStorage.siidList = idlist;
        }
      };
      /** this is specific to selected slot IDs **/
      window.onload = function() {
        window.sessionStorage.removeItem("calView");
        if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
          var arrSiid = window.sessionStorage.siidList.split(',');
          for (var i in arrSiid) {
            var thischeck = document.getElementById('checkbox' + arrSiid[i]);
            if (!thischeck.checked) thischeck.checked = true;
          }
        }
      };
      /** this is specific to selected slot IDs **/
      window.onbeforeunload = function(e) {
        if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
          if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
            window.sessionStorage.removeItem("siidList");
          }
        }
      };
      /** This is alternative event for mobile Safari and mobile Chrome **/
      window.onpagehide = function(e) {
        if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
          if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
            window.sessionStorage.removeItem("siidList");
          }
        }
      };
      /** this is specific to selected slot IDs and calendar view **/
      function setCalView() {
        window.sessionStorage.calView = true;
      };
      //  End 
      -->
    </script>
    <style>
      .link_cursor {
        cursor: pointer;
      }

      .popover-content {
        color: #000 !important;
      }

      .disabled {
        opacity: .5;
      }
    </style>
    <script>
      $(document).ready(function() {
        // $('[data-toggle="tooltip"]').tooltip();
        try {
          $('[data-toggle="popover"]').popover();
        } catch (e) {}
      });
    </script>
    <input name="URLID" id="URLID" type="hidden" value="StJoseph-Burbank">
    <input name="useMultiple" type="hidden" value="true">
    <input name="siids" id="siids" type="hidden" value="">
    <table width="100%" cellspacing="0" align="center" class="SUGtableouter">
      <tbody>
        <tr>
          <td bgcolor="#F5F4ED" height="35" class="SUGtableheader">Date <span class="SUGheaddate">(mm/dd/yyyy)</span></td>
          <td bgcolor="#F5F4ED" height="35" class="SUGtableheader">Time <span class="SUGheaddate">(PDT)</span></td>
          <td bgcolor="#F5F4ED" height="35" class="SUGtableheader">
            <div style="float:right; width:130px; text-align:right;">
              <a href="/index.cfm?go=s.signup&amp;urlid=stjoseph-burbank&amp;view=calendar" class="SUGcalbutton rounded" onclick="setCalView()"><span class="glyphicon glyphicon-calendar"></span> Calendar View</a>
            </div> Available Slot <span class="SUGheaddate"></span>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/18/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883293);checkLIST(1096883293);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883293" id="checkbox1096883293" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883293);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883730);checkLIST(1096883730);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883730" id="checkbox1096883730" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883730);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883944);checkLIST(1096883944);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883944" id="checkbox1096883944" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883944);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/19/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356329);checkLIST(1090356329);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356329" id="checkbox1090356329" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356329);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356783);checkLIST(1090356783);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356783" id="checkbox1090356783" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356783);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357273);checkLIST(1090357273);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357273" id="checkbox1090357273" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357273);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885134);checkLIST(1096885134);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885134" id="checkbox1096885134" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885134);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885521);checkLIST(1096885521);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885521" id="checkbox1096885521" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885521);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885778);checkLIST(1096885778);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885778" id="checkbox1096885778" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885778);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/20/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356321);checkLIST(1090356321);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356321" id="checkbox1090356321" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356321);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356790);checkLIST(1090356790);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356790" id="checkbox1090356790" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356790);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357275);checkLIST(1090357275);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357275" id="checkbox1090357275" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357275);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885140);checkLIST(1096885140);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885140" id="checkbox1096885140" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885140);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885561);checkLIST(1096885561);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885561" id="checkbox1096885561" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885561);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885769);checkLIST(1096885769);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885769" id="checkbox1096885769" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885769);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/25/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883302);checkLIST(1096883302);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883302" id="checkbox1096883302" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883302);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883735);checkLIST(1096883735);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883735" id="checkbox1096883735" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883735);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883941);checkLIST(1096883941);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883941" id="checkbox1096883941" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883941);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/26/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356318);checkLIST(1090356318);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356318" id="checkbox1090356318" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356318);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356785);checkLIST(1090356785);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356785" id="checkbox1090356785" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356785);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357253);checkLIST(1090357253);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357253" id="checkbox1090357253" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357253);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885117);checkLIST(1096885117);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885117" id="checkbox1096885117" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885117);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885520);checkLIST(1096885520);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885520" id="checkbox1096885520" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885520);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885766);checkLIST(1096885766);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885766" id="checkbox1096885766" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885766);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">07/27/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356330);checkLIST(1090356330);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356330" id="checkbox1090356330" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356330);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356780);checkLIST(1090356780);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356780" id="checkbox1090356780" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356780);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357265);checkLIST(1090357265);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357265" id="checkbox1090357265" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357265);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885143);checkLIST(1096885143);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885143" id="checkbox1096885143" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885143);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885532);checkLIST(1096885532);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885532" id="checkbox1096885532" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885532);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885764);checkLIST(1096885764);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885764" id="checkbox1096885764" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885764);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/01/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883297);checkLIST(1096883297);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883297" id="checkbox1096883297" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883297);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883732);checkLIST(1096883732);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883732" id="checkbox1096883732" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883732);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883946);checkLIST(1096883946);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883946" id="checkbox1096883946" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883946);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/02/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356337);checkLIST(1090356337);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356337" id="checkbox1090356337" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356337);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356779);checkLIST(1090356779);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356779" id="checkbox1090356779" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356779);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357261);checkLIST(1090357261);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357261" id="checkbox1090357261" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357261);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885113);checkLIST(1096885113);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885113" id="checkbox1096885113" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885113);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885526);checkLIST(1096885526);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885526" id="checkbox1096885526" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885526);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885756);checkLIST(1096885756);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885756" id="checkbox1096885756" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885756);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/03/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356320);checkLIST(1090356320);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356320" id="checkbox1090356320" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356320);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356782);checkLIST(1090356782);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356782" id="checkbox1090356782" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356782);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357258);checkLIST(1090357258);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357258" id="checkbox1090357258" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357258);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885135);checkLIST(1096885135);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885135" id="checkbox1096885135" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885135);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885555);checkLIST(1096885555);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885555" id="checkbox1096885555" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885555);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885772);checkLIST(1096885772);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885772" id="checkbox1096885772" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885772);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/08/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883303);checkLIST(1096883303);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883303" id="checkbox1096883303" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883303);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883743);checkLIST(1096883743);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883743" id="checkbox1096883743" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883743);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883947);checkLIST(1096883947);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883947" id="checkbox1096883947" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883947);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/09/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356331);checkLIST(1090356331);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356331" id="checkbox1090356331" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356331);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356788);checkLIST(1090356788);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356788" id="checkbox1090356788" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356788);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357251);checkLIST(1090357251);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357251" id="checkbox1090357251" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357251);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885114);checkLIST(1096885114);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885114" id="checkbox1096885114" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885114);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885536);checkLIST(1096885536);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885536" id="checkbox1096885536" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885536);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885752);checkLIST(1096885752);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885752" id="checkbox1096885752" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885752);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/10/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356334);checkLIST(1090356334);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356334" id="checkbox1090356334" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356334);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356770);checkLIST(1090356770);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356770" id="checkbox1090356770" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356770);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357268);checkLIST(1090357268);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357268" id="checkbox1090357268" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357268);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885129);checkLIST(1096885129);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885129" id="checkbox1096885129" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885129);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885547);checkLIST(1096885547);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885547" id="checkbox1096885547" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885547);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885746);checkLIST(1096885746);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885746" id="checkbox1096885746" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885746);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/15/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883304);checkLIST(1096883304);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883304" id="checkbox1096883304" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883304);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883727);checkLIST(1096883727);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883727" id="checkbox1096883727" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883727);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div style="padding-top:5px !important;">
                      <span class="SUGsignups">Already filled</span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="5" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/16/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356786);checkLIST(1090356786);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356786" id="checkbox1090356786" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356786);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357277);checkLIST(1090357277);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357277" id="checkbox1090357277" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357277);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885120);checkLIST(1096885120);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885120" id="checkbox1096885120" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885120);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885557);checkLIST(1096885557);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885557" id="checkbox1096885557" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885557);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885745);checkLIST(1096885745);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885745" id="checkbox1096885745" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885745);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/17/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356323);checkLIST(1090356323);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356323" id="checkbox1090356323" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356323);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356792);checkLIST(1090356792);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356792" id="checkbox1090356792" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356792);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357260);checkLIST(1090357260);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357260" id="checkbox1090357260" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357260);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885127);checkLIST(1096885127);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885127" id="checkbox1096885127" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885127);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885543);checkLIST(1096885543);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885543" id="checkbox1096885543" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885543);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885775);checkLIST(1096885775);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885775" id="checkbox1096885775" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885775);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/22/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883308);checkLIST(1096883308);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883308" id="checkbox1096883308" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883308);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883733);checkLIST(1096883733);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883733" id="checkbox1096883733" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883733);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883940);checkLIST(1096883940);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883940" id="checkbox1096883940" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883940);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/23/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356339);checkLIST(1090356339);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356339" id="checkbox1090356339" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356339);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356777);checkLIST(1090356777);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356777" id="checkbox1090356777" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356777);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357267);checkLIST(1090357267);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357267" id="checkbox1090357267" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357267);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885115);checkLIST(1096885115);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885115" id="checkbox1096885115" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885115);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885566);checkLIST(1096885566);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885566" id="checkbox1096885566" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885566);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885755);checkLIST(1096885755);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885755" id="checkbox1096885755" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885755);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/24/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356332);checkLIST(1090356332);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356332" id="checkbox1090356332" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356332);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356771);checkLIST(1090356771);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356771" id="checkbox1090356771" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356771);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357270);checkLIST(1090357270);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357270" id="checkbox1090357270" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357270);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885133);checkLIST(1096885133);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885133" id="checkbox1096885133" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885133);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885537);checkLIST(1096885537);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885537" id="checkbox1096885537" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885537);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885757);checkLIST(1096885757);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885757" id="checkbox1096885757" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885757);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/29/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883295);checkLIST(1096883295);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883295" id="checkbox1096883295" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883295);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096883728);checkLIST(1096883728);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096883728" id="checkbox1096883728" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096883728);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div style="padding-top:5px !important;">
                      <span class="SUGsignups">Already filled</span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/30/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356327);checkLIST(1090356327);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356327" id="checkbox1090356327" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356327);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356774);checkLIST(1090356774);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356774" id="checkbox1090356774" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356774);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357252);checkLIST(1090357252);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357252" id="checkbox1090357252" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357252);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885119);checkLIST(1096885119);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885119" id="checkbox1096885119" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885119);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885533);checkLIST(1096885533);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885533" id="checkbox1096885533" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885533);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885762);checkLIST(1096885762);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885762" id="checkbox1096885762" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885762);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">08/31/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356336);checkLIST(1090356336);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356336" id="checkbox1090356336" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356336);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090356768);checkLIST(1090356768);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090356768" id="checkbox1090356768" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090356768);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1090357254);checkLIST(1090357254);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1090357254" id="checkbox1090357254" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090357254);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885121);checkLIST(1096885121);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885121" id="checkbox1096885121" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885121);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885530);checkLIST(1096885530);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885530" id="checkbox1096885530" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885530);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1096885770);checkLIST(1096885770);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1096885770" id="checkbox1096885770" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1096885770);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/06/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903939);checkLIST(1109903939);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903939" id="checkbox1109903939" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903939);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904305);checkLIST(1109904305);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904305" id="checkbox1109904305" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904305);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904413);checkLIST(1109904413);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904413" id="checkbox1109904413" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904413);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904616);checkLIST(1109904616);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904616" id="checkbox1109904616" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904616);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/07/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903933);checkLIST(1109903933);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903933" id="checkbox1109903933" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903933);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904300);checkLIST(1109904300);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904300" id="checkbox1109904300" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904300);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904410);checkLIST(1109904410);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904410" id="checkbox1109904410" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904410);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904617);checkLIST(1109904617);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904617" id="checkbox1109904617" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904617);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904888);checkLIST(1109904888);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904888" id="checkbox1109904888" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904888);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905086);checkLIST(1109905086);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905086" id="checkbox1109905086" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905086);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/12/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904620);checkLIST(1109904620);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904620" id="checkbox1109904620" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904620);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904886);checkLIST(1109904886);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904886" id="checkbox1109904886" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904886);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905084);checkLIST(1109905084);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905084" id="checkbox1109905084" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905084);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/13/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903934);checkLIST(1109903934);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903934" id="checkbox1109903934" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903934);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904306);checkLIST(1109904306);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904306" id="checkbox1109904306" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904306);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904414);checkLIST(1109904414);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904414" id="checkbox1109904414" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904414);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904615);checkLIST(1109904615);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904615" id="checkbox1109904615" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904615);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904890);checkLIST(1109904890);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904890" id="checkbox1109904890" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904890);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905087);checkLIST(1109905087);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905087" id="checkbox1109905087" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905087);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/14/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903937);checkLIST(1109903937);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903937" id="checkbox1109903937" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903937);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904302);checkLIST(1109904302);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904302" id="checkbox1109904302" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904302);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904415);checkLIST(1109904415);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904415" id="checkbox1109904415" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904415);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904621);checkLIST(1109904621);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904621" id="checkbox1109904621" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904621);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904889);checkLIST(1109904889);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904889" id="checkbox1109904889" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904889);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905088);checkLIST(1109905088);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905088" id="checkbox1109905088" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905088);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/19/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904614);checkLIST(1109904614);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904614" id="checkbox1109904614" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904614);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904893);checkLIST(1109904893);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904893" id="checkbox1109904893" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904893);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905089);checkLIST(1109905089);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905089" id="checkbox1109905089" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905089);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/20/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903938);checkLIST(1109903938);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903938" id="checkbox1109903938" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903938);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904304);checkLIST(1109904304);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904304" id="checkbox1109904304" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904304);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904411);checkLIST(1109904411);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904411" id="checkbox1109904411" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904411);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904618);checkLIST(1109904618);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904618" id="checkbox1109904618" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904618);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904884);checkLIST(1109904884);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904884" id="checkbox1109904884" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904884);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905090);checkLIST(1109905090);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905090" id="checkbox1109905090" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905090);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/21/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903935);checkLIST(1109903935);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903935" id="checkbox1109903935" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903935);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904303);checkLIST(1109904303);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904303" id="checkbox1109904303" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904303);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904408);checkLIST(1109904408);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904408" id="checkbox1109904408" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904408);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904624);checkLIST(1109904624);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904624" id="checkbox1109904624" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904624);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904891);checkLIST(1109904891);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904891" id="checkbox1109904891" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904891);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905093);checkLIST(1109905093);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905093" id="checkbox1109905093" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905093);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/26/2022 (Mon.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904619);checkLIST(1109904619);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904619" id="checkbox1109904619" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904619);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904887);checkLIST(1109904887);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904887" id="checkbox1109904887" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904887);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905085);checkLIST(1109905085);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905085" id="checkbox1109905085" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905085);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/27/2022 (Tue.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903940);checkLIST(1109903940);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903940" id="checkbox1109903940" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903940);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904307);checkLIST(1109904307);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904307" id="checkbox1109904307" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904307);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904412);checkLIST(1109904412);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904412" id="checkbox1109904412" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904412);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904623);checkLIST(1109904623);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904623" id="checkbox1109904623" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904623);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904892);checkLIST(1109904892);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904892" id="checkbox1109904892" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904892);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905092);checkLIST(1109905092);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905092" id="checkbox1109905092" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905092);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
            <span class="SUGbigbold">09/28/2022 (Wed.)</span>
          </td>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109903936);checkLIST(1109903936);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109903936" id="checkbox1109903936" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109903936);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904301);checkLIST(1109904301);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904301" id="checkbox1109904301" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904301);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904409);checkLIST(1109904409);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904409" id="checkbox1109904409" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904409);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904622);checkLIST(1109904622);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904622" id="checkbox1109904622" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904622);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109904885);checkLIST(1109904885);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109904885" id="checkbox1109904885" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109904885);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm &nbsp;</span>
          </td>
          <td class="SUGtable" valign="top">
            <table width="100%" cellpadding="2" cellspacing="0">
              <!-- end output loop w/ group="itemID" -->
              <tbody>
                <tr>
                  <td valign="top" width="48%" style="padding-top:10px;">
                    <p class="SUGbigbold hrow">Health Screen </p>
                    <p class="SUGsmall hrow">
                    </p>
                  </td>
                  <td width="4%" valign="top"> &nbsp; </td>
                  <td valign="top" width="48%">
                    <div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
                      <span class="SUGbutton rounded">
                        <span onclick="checkTheBox(1109905091);checkLIST(1109905091);">Sign Up&nbsp;</span>
                        <input name="siid" type="checkbox" value="1109905091" id="checkbox1109905091" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109905091);">
                      </span>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
</form>

Text Content

WE VALUE YOUR PRIVACY

We and our partners store and/or access information on a device, such as cookies
and process personal data, such as unique identifiers and standard information
sent by a device for personalised ads and content, ad and content measurement,
and audience insights, as well as to develop and improve products.

With your permission we and our partners may use precise geolocation data and
identification through device scanning. You may click to consent to our and our
partners’ processing as described above. Alternatively you may access more
detailed information and change your preferences before consenting or to refuse
consenting. Please note that some processing of your personal data may not
require your consent, but you have a right to object to such processing. Your
preferences will apply to this website only. You can change your preferences at
any time by returning to this site or visit our privacy policy.

MORE OPTIONSAGREE


We value your privacy. We use cookies and other technologies to keep the site
reliable and secure, tailor your experience, measure site performance and
present relevant offers and advertisements, as described in our Privacy Policy.
Got it!
Toggle navigation
 * Features
 * Pricing
 * More
   * Resources & Tips
   * Blog
   * Collect Money
   * Enterprise
   * Help

 * Log In
 * 


Create a Sign Up
×


CHANGE LOCK

The time to sign up for this item / event has ended. Contact the sign up creator
for assistance.

Close
×


CHANGE LOCK

The time to make changes to this sign up have ended. Contact the sign up creator
for assistance.

Close
EH Scheduling


PROVIDENCE ST. JOSEPH MEDICAL CENTER - BURBANK

Welcome to Providence!

Please schedule your health Screen appointment now as time slots can fill up
quickly.  If your start work date is further into the future, schedule closer to
that date.  If possible, no further out than 2 weeks.  Bring your completed
Health Screen Packet and any vaccination records available to you.  Depending on
your records, a blood draw may be needed at this appointment.  If you have any
questions, please e-mail EHscheduling@providence.org.  Note: any comments you
leave in the Sign-Up are public view, not Private.

Providence St. Joseph Medical Center - Burbank

501 South Buena Vista Street

Burbank, CA 91505

Park at Visitor parking and enter at front lobby.Caregiver health is located on
the 2nd floor of east tower.  From the front Lobby: Make a left at info desk and
make a right and immediate left (past the circular waiting area).  Follow the
signs for east tower.  Take the long hallway leading outside through the
automatic doors.  Once outside, continue to the end of the walkway and make a
right into east building.  Upon enterering east building, you can turn left. 
Elevators are immediately at your left.  Take the elevator to 2nd floor. 
Caregiver health is locatedd as you exit the elevator and nurses are located in
rooms 208 and 209.  Parking will be validated.  Phone: (818) 843-5111

Location: 501 S Buena Vista St
501 S Buena Vista St, Burbank, CA 91505



Related files:
CG Screening Packet COMPLETE 02- prior to visit forms- fillable 10.pdf (361KB
pdf)





Created by:  EH Scheduling
 

Already signed up? You can change your sign up.


The sign up creator has set a maximum quantity limit of 1 for this sign up.

Date (mm/dd/yyyy) Time (PDT)
Calendar View
Available Slot 07/18/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

07/19/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

07/20/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

07/25/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

07/26/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

07/27/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/01/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/02/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/03/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/08/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/09/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/10/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/15/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Already filled

08/16/2022 (Tue.) 9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/17/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/22/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/23/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/24/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/29/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Already filled

08/30/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

08/31/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/06/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

09/07/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/12/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/13/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/14/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/19/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/20/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/21/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/26/2022 (Mon.) 11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/27/2022 (Tue.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

09/28/2022 (Wed.) 8:00am  

Health Screen



 
Sign Up 

9:00am  

Health Screen



 
Sign Up 

10:00am  

Health Screen



 
Sign Up 

11:00am  

Health Screen



 
Sign Up 

1:00pm  

Health Screen



 
Sign Up 

2:00pm  

Health Screen



 
Sign Up 

©2022 SignUpGenius.
All Rights Reserved.
Privacy Policy | Terms of Service  |  Do Not Sell My Personal Information


SIGN UP QUANTITY LIMIT

You have reached the quantity limit set up by the sign up creator. You are not
allowed to sign up for more than 1 item on this sign up .
OK