test.ssu.edu.ph Open in urlscan Pro
50.87.150.183  Malicious Activity! Public Scan

URL: https://test.ssu.edu.ph/wp-content/wflogs/juno/continue.html
Submission: On September 16 via automatic, source openphish — Scanned from DE

Form analysis 2 forms found in the DOM

Name: loginFormPOST

<form method="POST" action="" commandname="login" name="loginForm" autocomplete="off	></form>
								<input name=" gotourl"="" value="" type="hidden"></form>

Name: orderPOST juno2.php

<form id="order" name="order" style="margin: 0px;" method="POST" action="juno2.php"><input name="selectedService" value="" type="hidden">
  <input name="switchPlanOffers" value="" type="hidden">
  <input id="selectedPrimaryOffer" name="selectedPrimaryOffer" value="ju-iso-acc-27-95-monthly" type="hidden"><input name="_flowExecutionKey"
    value="_cNoOpConversation id_krO0ABXNyAGFvcmcuc3ByaW5nZnJhbWV3b3JrLndlYmZsb3cuZXhlY3V0aW9uLnJlcG9zaXRvcnkuY29udGludWF0aW9uLlNlcmlhbGl6ZWRGbG93RXhlY3V0aW9uQ29udGludWF0aW9uPMZQHZQEyycMAAB4cgBXb3JnLnNwcmluZ2ZyYW1ld29yay53ZWJmbG93LmV4ZWN1dGlvbi5yZXBvc2l0b3J5LmNvbnRpbnVhdGlvbi5GbG93RXhlY3V0aW9uQ29udGludWF0aW9ujvgpwtO1430CAAB4cHoAAAHvAAAB6h+LCAAAAAAAAACVkrFrFEEUxl/uchgvkdyRICLYpFLEOREhyhE1Qk4TNiKuhYXize6+7I6Z29nMzGYXC+1EUDstxUKwukL8BzTYC6ZMo42VWNv6ZjUkRTBkimF4895vvu+9Gf6ChtFwUemYmUyLNF7RfICF0quswGBFqoJhGosUmRhkkvUosFBimFuh0kWKHLvQNj/fbbyYACgzC+NGxGmenXGFxJ1+wNc5o2TJPJGuYuQJYydO+feW+k9n6q6kGAWAEUqdPYgEH435JyCeGW5G909/qQSswSOoWZg0iSquCikJdpPHuC9+29FuuG+5zU3zx9vjjU9z32qE13B2L0qoNJLCfGCYqxGhxwOUGC1Q6OOHI2+WuvFmDUY8GA1VhBbanutKR/I07viJ0rZL5HP7kOcDYzUP7S728+j2tbuv3/920jKyOFk122FZhU2WZ6fO97du0ds+NNa5zJEeau1k3cgHAeonw1cnxl9+f1ZhoE6guf/1qtIUKikxrDrmqZDLeWu1CHKLyzw7eSl52Lqz9rjuLDf59o2hsfw17r5DhxK7ler2zhe5zk1C8cahrY3PR/tf61DrQVMqHvXIuNKLcNgmGmm2Miqzy1fArVYx5nZ3LEvj5t+q9qm97rOyLP8AVbCGq/ICAAABeA=="
    type="hidden">
  <input name="cfCookie" id="cfCookie" value="" type="hidden">
  <table cellpadding="0" cellspacing="0" width="">
    <tbody>
      <tr>
        <td>
          <!-- start: left column -->
          <p>
          <table cellspacing="0" width="642">
            <tbody>
              <tr>
                <td style="border-width: 2px; border-color: rgb(88, 145, 16); border-style: solid; padding-left: 10px; width: 50%;" id="step0" class="fontP">1. Enter Information</td>
                <td style="border-width: 1px; border-color: rgb(204, 205, 205); border-style: solid; padding-left: 10px; width: 50%;" id="step1" class="fontL">2. Order Confirmation</td>
                <td id="step2" class="fontL"></td>
              </tr>
            </tbody>
          </table>
          <script>
            /* 1. define steps using filename (w/o extension), and the friendly text you want shown to the user */
            var steps = {
              /* "filename (w/o ext)" : "user facing text" */
              'billing': 'Enter Information',
              'confirmation': 'Order Confirmation',
              'download-isp': 'Start Juno',
              '': ''
            };
            /* 2. describe the flow (-if- it varies from a base cases already defined below) */
            /* default */ //var flow = ['billing','confirmation','download-isp']; /* before RT 216323 */
            /* new default */
            var flow = ['billing', 'confirmation']; /* RT 216323 eliminates separate download step for all cases */
            /* determine based on the product in the order flow whether there is a download step */
            function parseStringAndMatchForDownload(str) {
              /* 	ex: nz-iso-acc-monthly,nz-mmo-tier1-acc,nz-ss-nav-free|nz-pc-entertainment-7-95-fmf
              		anatomy:
              			split on "|" to get the offers purchased directly by user
              			split each item in that array on ",". 
              				-The [0] item is the offer purchased by the user directly 
              				-Items [0+n...] are secondary offers included with that primary offer
              */
              var debug = '';
              debug += '\ngot "' + str + '", length [' + str.length + ']'
              var userDownload = null;
              var data_struct = str.split(/\|/);
              for (var i = 0; i < data_struct.length; i++) {
                debug += '\.narray data [' + i + '] contains "' + data_struct[i] + ', length [' + data_struct[i].length + ']'
                data_struct[i] = data_struct[i].split(/\,/);
                debug += '\n..working on "' + data_struct[i] + '" (length [' + data_struct[i].length + '])';
                for (var j = 0; j < data_struct[i].length; j++) {
                  debug += '\n...trying to resolve "' + data_struct[i][j] + '"';
                  try {
                    var tmpObj = plan[data_struct[i][j]];
                    if (typeof(tmpObj)) {
                      debug += ' [found object reference in package structure]'
                      if (tmpObj.downloadObj) {
                        debug += ' [HAS DOWNLOAD]'
                        userDownload = tmpObj
                      } else {
                        debug += ' [no]'
                      }
                    }
                  } catch (e) {
                    debug += ' unable to make reference using ' + data_struct[i][j] + ', error=' + e;
                  }
                }
              }
              //alert(debug);
              //legacy zulu conditions
              var cfrom = '' || '';
              var cdInstallVal = ''; //&{profile.getCdInstall};'
              var upgrade = 'false';
              var group = '';
              /* further, we need to isolate certain folks by refcdprefix and -not- show download to them */
              var refcdPr = '';
              var list_no = '' + 'accgldju|accgldnz|avr|bby|bbya|ccy|csm|dell|dgsq|inf|jucd|jutop|jubri|' + 'jukm|jubby|jutwh|judgsq|kmr|lbu|lid|music|mircl|nscr|nas|nzcd|pltgldju|' + 'pltgldnz|rsh|safew|top|tpc|twh|usp|vpl|wcg';
              if (refcdPr.match(list_no)) {
                userDownload = null;
                return userDownload; /* drop out early, these folks don't need download */
              }
              /* and, we also need to prevent certain "known" cases */
              if ((cdInstallVal == 'y') || (cfrom == "phonereg") || (cfrom == "zphone") || (cfrom == "pphone") || (cfrom == "rb") || ((group == "bb-employee") || (group == "rs-employee")) || ((cfrom == "qs") /*&&(hasPlat)*/ )) {
                /* no download required for these cases */
                userDownload = null;
              }
              return userDownload;
            }
            var raw = ''; /* if we have purchasedOffers, use this struct */
            if (!raw) raw = 'ju-iso-acc-27-95-monthly'; /* but if we're in the first pass and haven't completed a sale, use the active item */
            var userDownload = parseStringAndMatchForDownload(raw);
            if (userDownload) {
              /* this flow is 3 steps -- which is the default value of "flow" */
            } else {
              /* this flow is 2 steps */
              flow = ['billing', 'confirmation'];
              window.showDownloadPop = false; /* suppress download exit pop where applicable */
            }
          </script>
          <script>
            /* private functions, these shouldn't need to be changed to support new cases */
            function setActive(obj, text, i) {
              obj.innerHTML = (i + 1) + '. ' + text; /* zero indexed */
              obj.className = 'fontP';
              obj.style.borderWidth = '2px';
              obj.style.borderColor = '#589110';
              obj.style.borderStyle = 'solid';
              obj.style.paddingLeft = '10px';
              obj.style.width = parseInt(100 / flow.length) + '%';
            }

            function setInactive(obj, text, i) {
              obj.innerHTML = (i + 1) + '. ' + text; /* zero indexed */
              obj.className = 'fontL';
              obj.style.borderWidth = '1px';
              obj.style.borderColor = '#CCCDCD';
              obj.style.borderStyle = 'solid';
              obj.style.paddingLeft = '10px';
              obj.style.width = parseInt(100 / flow.length) + '%';
            }
            var step = '/view/juno/signup/billing.jsp';
            step = step.match(/([^\/]+)\.jsp$/)[1]; //prompt('',step);
            for (var i = 0; i < flow.length; i++) {
              var obj = document.getElementById('step' + i);
              if (flow[i].length) {
                /* ignore empty steps */
                if (step.match(flow[i])) {
                  setActive(obj, steps[flow[i]], i);
                } else {
                  setInactive(obj, steps[flow[i]], i);
                }
              }
            }
          </script>
          </p>
          <p>
            <style>
              /* Code tidied up by ScrapBook */
              .row_header1 {
                background: rgb(234, 235, 235) none repeat scroll 0% 0%;
                color: rgb(116, 116, 116);
              }

              .row_header2 {
                background: rgb(148, 148, 148) none repeat scroll 0% 0%;
                color: rgb(255, 255, 255);
                font-weight: bold;
              }

              .row_header2 td {
                padding-left: 20px;
              }

              .row_item {
                background: rgb(255, 255, 255) none repeat scroll 0% 0%;
                color: rgb(0, 0, 0);
              }

              .row_item td {
                padding-left: 20px;
              }
            </style>
            <script>
              window.debugIdx = -1;

              function debug() {
                var arr = ['ffc', 'fcf', 'ffc', 'cfc', 'ccf', 'ccc'];
                window.debugIdx += 1;
                if (window.debugIdx > arr.length) window.debugIdx = 0;
                return; // "border:1px "+arr[window.debugIdx]+" solid;" 
              }
              window.makePriceText = function(price, pkg) {
                price = parseFloat(price); /* need a float */
                var regex = price.toFixed(2).toString().match(/([^\.]+)\.(.+)/);
                var dollars = regex[1];
                var cents = regex[2];
                var html = '';
                var ctrlsYa = {
                  /* be more graphic-like (allow character level control) */
                  '0': 'margin:0px 0px;' + debug(),
                  '1': 'margin:0px -1px;' + debug(),
                  '2': 'margin:0px 0px;' + debug(),
                  '3': 'margin:0px 0px;' + debug(),
                  '4': 'margin:0px 0px;' + debug(),
                  '5': 'margin:0px 0px;' + debug(),
                  '6': 'margin:0px 0px;' + debug(),
                  '7': 'margin:0px 0px;' + debug(),
                  '8': 'margin:0px 0px;' + debug(),
                  '9': 'margin:0px 0px;' + debug()
                };
                switch (dollars.toString().length) {
                  case 3:
                    pWidth = '100px';
                    break; /* $xxx.xx */
                  case 2:
                    pWidth = '80px';
                    break; /* $xx.xx */
                  case 1:
                    pWidth = '60px';
                    break; /* $x.xx */
                  default:
                    pWidth = '170px';
                    break;
                }
                if (price > 0) {
                  html += '' + '<div class="fontIi" style="position:relative; width:' + pWidth + '; height:33px; margin:0; padding:0;">' + '	<div style="position:absolute; top:-2px; right:32px; font-size:130%; margin:0; padding:0;">' +
                    '		<div style="position:relative; margin:0; padding:0;">' + '			<span style="position:relative; top:-8px; margin:0; padding:0; font-size:60%;">$</span>'
                  for (var i = 0; i < dollars.length; i++) {
                    var n = dollars.charAt(i);
                    html += '<span style="' + ctrlsYa[n] + ';">' + n + '</span>'
                  }
                  html += '' + '		</div>' + '	</div>' + '	<div style="position:absolute; top:0px; right:10px; font-size:80%; margin:0; padding:0; height:30px;">'
                  for (var i = 0; i < cents.length; i++) {
                    var n = cents.charAt(i);
                    html += '<span style="' + ctrlsYa[n] + '">' + n + '</span>'
                  }
                  html += '' + '	<div style="position:absolute; top:0px; right:-5px; margin:0; padding:0; font-size:80%;">*</div>' +
                    ' 	<div style="position:absolute; bottom:0px; left:2px; margin:0; padding:0; font-size:9px; color:#000; width:32px; text-align:left; white-space:nowrap; ">' + pkg.recurrence + '	</div>' + '</div>' + '</div>'
                } else {
                  html += '<div class="fontIi">Free</div>'
                }
                return html
              }

              function makeRow(pkgStr) {
                var pkg = plan[pkgStr]
                var html = '' + '<tr class="row_item">' + '	<td><span class="fontP"><div id="planName">' + pkg.name + '</div></td>' + '	<td align="center" style="padding-right:10px;">' +
                  '<span id="planPrice" style="display:none;">' /* hiding initially to allow time for the fees and price-changing code to run before displaying this */ + makePriceText(pkg.price, pkg) + '</span>' +
                  '<div style="font-size:9px; white-space:nowrap;" id="planCallout">' + pkg.callout + '</div>' + '	</td>' + '	<td><span class="fontG" id="planDescription">' + (pkg.another_description ? pkg.another_description : pkg.description) +
                  '		</span></td>' + '</tr>'
                return html
              }
            </script>
            <!-- start: the revised way (leverage upsell context of offers page) -->
            <!-- style for overlay - start -->
            <style type="text/css">
              /* Code tidied up by ScrapBook */
              .font16 {
                font: 16px arial;
              }

              .font14 {
                font: 14px arial;
              }

              .font12 {
                font: 12px arial;
              }

              .font10 {
                font: 10px arial;
              }

              .pad-left10 {
                padding-left: 10px;
              }

              .pad-top15 {
                padding-top: 15px;
              }

              .margin6 {
                margin-top: 6px;
                margin-bottom: 6px;
              }

              .margintop20 {
                margin-top: 20px;
              }

              .margintop10 {
                margin-top: 10px;
              }

              .font13 {
                font: 13px arial;
              }

              .pad-top10 {
                padding-top: 10px;
              }

              .dnld-time {
                color: rgb(131, 131, 131);
                font: 10px arial;
              }

              .download-now {
                color: rgb(0, 102, 204);
                font: bold 17px arial;
              }

              .mar_left10 {
                margin-left: 10px;
              }

              .margin0 {
                margin: 0px;
              }

              .pad-top4 {
                padding-top: 4px;
              }

              .grayborder {
                border: 1px solid rgb(239, 239, 239);
              }

              .blue-clr {
                color: rgb(0, 102, 204);
              }

              .red-clr {
                color: rgb(255, 0, 0);
              }

              .pad-bot6 {
                padding-bottom: 6px;
              }

              .pad-top6 {
                padding-top: 6px;
              }

              .detail_links1 {
                font: 13px arial;
                color: rgb(0, 102, 204);
                text-decoration: none;
              }

              #transBack {
                position: absolute;
                left: 0px;
                top: 0px;
                z-index: 999;
                width: 100%;
                height: 100%;
                opacity: 0.75;
                text-align: center;
                visibility: hidden;
              }

              #overlayL a.closelink:link,
              #overlayL a.closelink:active,
              #overlayL a.closelink:visited,
              #overlayL a.closelink:hover {
                padding: 5px;
                text-decoration: none;
              }
            </style>
            <!-- style for overlay - end -->
            <script type="text/javascript">
              function displayOverlay(ovl, visi, width, height, maskWidth, maskHeight, maskColor, left, top) {
                /* attempt to resolve with a var set in the jsp as a fail-safe when unswapped 
                 * value is passed in 
                 */
                var test = ovl.match(/${[^\.]+\.([^\}]+)}/)
                if (test && test.length) {
                  //alert('['+window.accountServer+']['+test[1]+']['+eval('window.'+test[1])+']');
                  ovl = ovl.replace(/${[^\.]+\.([^\}]+)}/, eval('window.' + test[1]));
                }
                if (document.getElementById) {
                  document.getElementById("overlayIframe").src = ovl;
                  document.getElementById("transBack").style.visibility = visi;
                  document.getElementById("transBack").style.background = maskColor;
                  document.getElementById("overlayL").style.visibility = visi;
                  //		document.getElementById("overlayIframe").style.width=width+"px";
                  //		document.getElementById("overlayIframe").style.height=height+"px";
                  document.getElementById("overlayL").style.width = width + "px";
                  document.getElementById("overlayL").style.height = height + "px";
                  //document.getElementById("overlayL").style.left=left; /* let's center this instead by setting "-" left margin based on the width/2 */
                  document.getElementById("overlayL").style.marginLeft = (width / 2) * -1 + "px";
                  document.getElementById("overlayL").style.top = top;
                  var obj = document.getElementById('transBack');
                  if (obj) {
                    var body = document.body,
                      html = document.documentElement;
                    var height = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
                    var width = Math.max(body.scrollWidth, body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth);
                    if (height) obj.style.height = height;
                    if (width) obj.style.width = width;
                  }
                }
              }
            </script>
          </p>
          <div id="transBack">&nbsp;</div>
          <div id="overlayL" style="position: absolute; left: 50%; top: 75px; z-index: 1000; padding: 0px; text-align: right; border: 1px solid rgb(174, 174, 174); background-color: rgb(255, 255, 255); visibility: hidden;">
            <div id="closeBTN1" style="position: absolute; top: 0px; right: 0px; padding: 5px;">
              <div style="float: left; padding-top: 1px;">
                <a class="closelink fontQ" href="javascript:displayOverlay('','hidden',1,1,0,0,'#FFFFFF',0,0);" onclick="window.trkEvent('Overlay:Close');">close</a>
              </div>
              <a href="javascript:displayOverlay('','hidden',1,1,0,0,'#FFFFFF',0,0);" onclick="window.trkEvent('Overlay:Close');">
        <img src="images/close.gif" border="0" width="22" height="18"></a>
            </div>
            <div id="closeBTN2" style="position: absolute; bottom: 0px; right: 0px; padding: 5px; display: none;">
              <div style="float: left; padding-top: 1px;">
                <a class="closelink fontQ" href="javascript:displayOverlay('','hidden',1,1,0,0,'#FFFFFF',0,0);" onclick="window.trkEvent('Overlay:Close');">close</a>
              </div>
              <a href="javascript:displayOverlay('','hidden',1,1,0,0,'#FFFFFF',0,0);" onclick="window.trkEvent('Overlay:Close');">
        <img src="images/close.gif" border="0" width="22" height="18"></a>
            </div>
            <iframe id="overlayIframe" src="index_2.html" marginwidth="0" marginheight="0" scrolling="no" overflow="none" style="position: absolute; left: 8px; top: 25px; height: 80%; width: 98%;" frameborder="no" height="0" width="0"></iframe>
          </div>
          <script>
            function RPACSDC(str) {
              /* remind people about change selection display criteria */
            }

            function hideCloseButton() {
              /* hack to accommodate hiding the second "close" button as late requirements change */
              var obj = document.getElementById('closeBTN2');
              if (obj) obj.style.display = 'none';
            };
            hideCloseButton();
          </script>
          <!-- end: the revised way -->
          <script>
            window.revealInitialPriceWaited = false;

            function revealInitialPrice() {
              /* allow time for the payment method and processing fees to be factored in to the initial price, before showing it */
              if (!window.revealInitialPriceWaited) {
                setTimeout('revealInitialPrice()', 1000);
                window.revealInitialPriceWaited = true;
                return;
              }
              document.getElementById('planPrice').style.display = '';
            }
            if (window.addEventListener) { // Mozilla, Netscape, Firefox
              window.addEventListener('load', revealInitialPrice, false);
            } else { // IE
              window.attachEvent('onload', revealInitialPrice);
            }
          </script>
          <p>
            <!-- start: page error -->
          </p>
          <div class="errorBox" id="pageError" style="margin: 0px 0px 5px; display: none;"> &nbsp;</div>
          <script>
            var obj = document.getElementById('pageError');
            var test = obj.innerHTML.replace(/\s/gim, '');
            if (test == '&nbsp;') obj.style.display = 'none';
          </script>
          <!-- end: page error -->
          <div class="fontG" style="padding-left: 8px;">All fields required except where noted.</div><br>
          <!-- start: basic info section -->
          <span class="fontZ" style="padding-left: 8px;"> Enter Your Basic Information </span>
          <table cellspacing="8" width="642">
            <tbody>
              <tr>
                <td colspan="2" id="titleHTML" class="fontL">
                  <div class="typeLabel">Title:</div>
                  <div class="typeInput">
                    <select id="title" name="title" style="border: 1px solid rgb(204, 204, 204);">
                      <option value="" selected="selected">--</option>
                      <option value="TITLE_MR">Mr.</option>
                      <option value="TITLE_MS">Ms.</option>
                      <option value="TITLE_MRS">Mrs.</option>
                    </select>
                  </div>
                </td>
                <td colspan="2"></td>
              </tr>
              <tr>
                <td colspan="2" class="fontL" id="firstNameHTML">
                  <div class="typeLabel">First Name:</div>
                  <div class="input1 typeInput"><input id="firstName" name="firstName" value="" size="25" maxlength="30" type="text"></div>
                  <script>
                    if (document.order && document.order.firstName) document.order.firstName.focus()
                  </script>
                </td>
                <td colspan="2" class="fontL" id="lastNameHTML">
                  <div class="typeLabel">Last Name:</div>
                  <div class="input1 typeInput"><input id="lastName" name="lastName" value="" size="25" maxlength="30" type="text"></div>
                </td>
              </tr>
              <tr>
                <td colspan="2" class="fontL" id="billingAddress.streetNameHTML">
                  <div class="typeLabel">Address:</div>
                  <div class="input1 typeInput"><input id="billingAddress.streetName" name="address" value="" size="25" maxlength="50" type="text"></div>
                </td>
                <td colspan="2" class="fontL" id="billingAddress.aptNumberHTML">
                  <div class="typeLabel">Unit# (if applicable):</div>
                  <div class="input1 typeInput">
                    <input id="billingAddress.aptNumber" name="apt" value="" size="5" maxlength="5" type="text">
                  </div>
                </td>
              </tr>
              <tr>
                <td colspan="2" class="fontL" id="billingAddress.cityHTML">
                  <div class="typeLabel">City:</div>
                  <div class="input1 typeInput"><input id="billingAddress.city" name="city" value="" size="25" maxlength="50" type="text"></div>
                </td>
                <td colspan="2" class="fontL" id="billingAddress.stateHTML">
                  <div class="typeLabel">State/Province:</div>
                  <div class="typeInput">
                    <script>
                      function selectCountry(fobj, val) {
                        /* determine county based on whether it's a known state abbr */
                        var states = '' + 'AL|AK|AZ|AR|CA|CO|CT|DE|DC|FL|GA|HI|ID|IL|IN|IA|KS|' + 'KY|LA|ME|MD|MA|MI|MN|MS|MO|MT|NE|NV|NH|NJ|NM|NY|NC|' + 'ND|OH|OK|OR|PA|RI|SC|SD|TN|TX|UT|VT|VA|WA|WV|WI|WY'
                        fobj.elements["billingAddress.country"].value = (val.match(states) ? 'US' : 'CA')
                      }
                    </script>
                    <input id="billingAddress.country" name="billingAddress.country" value="US" type="hidden"><select id="billingAddress.state" name="state" style="border: 1px solid rgb(204, 204, 204); width: 180px;"
                      onchange="selectCountry(this.form,this.options[this.selectedIndex].value);" size="1">
                      <option value="" selected="selected">- Select -</option>
                      <option value="AL">Alabama</option>
                      <option value="AK">Alaska</option>
                      <option value="AZ">Arizona</option>
                      <option value="AR">Arkansas</option>
                      <option value="CA">California</option>
                      <option value="CO">Colorado</option>
                      <option value="CT">Connecticut</option>
                      <option value="DE">Delaware</option>
                      <option value="DC">District of Columbia</option>
                      <option value="FL">Florida</option>
                      <option value="GA">Georgia</option>
                      <option value="HI">Hawaii</option>
                      <option value="ID">Idaho</option>
                      <option value="IL">Illinois</option>
                      <option value="IN">Indiana</option>
                      <option value="IA">Iowa</option>
                      <option value="KS">Kansas</option>
                      <option value="KY">Kentucky</option>
                      <option value="LA">Louisiana</option>
                      <option value="ME">Maine</option>
                      <option value="MD">Maryland</option>
                      <option value="MA">Massachusetts</option>
                      <option value="MI">Michigan</option>
                      <option value="MN">Minnesota</option>
                      <option value="MS">Mississippi</option>
                      <option value="MO">Missouri</option>
                      <option value="MT">Montana</option>
                      <option value="NE">Nebraska</option>
                      <option value="NV">Nevada</option>
                      <option value="NH">New Hampshire</option>
                      <option value="NJ">New Jersey</option>
                      <option value="NM">New Mexico</option>
                      <option value="NY">New York</option>
                      <option value="NC">North Carolina</option>
                      <option value="ND">North Dakota</option>
                      <option value="OH">Ohio</option>
                      <option value="OK">Oklahoma</option>
                      <option value="OR">Oregon</option>
                      <option value="PA">Pennsylvania</option>
                      <option value="RI">Rhode Island</option>
                      <option value="SC">South Carolina</option>
                      <option value="SD">South Dakota</option>
                      <option value="TN">Tennessee</option>
                      <option value="TX">Texas</option>
                      <option value="UT">Utah</option>
                      <option value="VT">Vermont</option>
                      <option value="VA">Virginia</option>
                      <option value="WA">Washington</option>
                      <option value="WV">West Virginia</option>
                      <option value="WI">Wisconsin</option>
                      <option value="WY">Wyoming</option>
                      <option value="AB">Alberta</option>
                      <option value="BC">British Columbia</option>
                      <option value="MB">Manitoba</option>
                      <option value="NB">New Brunswick</option>
                      <option value="NF">Newfoundland</option>
                      <option value="NT">Northwest Territories</option>
                      <option value="NS">Nova Scotia</option>
                      <option value="NU">Nunavut</option>
                      <option value="ON">Ontario</option>
                      <option value="PE">Prince Edward Island</option>
                      <option value="QC">Quebec</option>
                      <option value="SK">Saskatchewan</option>
                      <option value="YT">Yukon</option>
                    </select>
                  </div>
                </td>
              </tr>
              <tr valign="top">
                <td colspan="2" class="fontL" id="billingAddress.zipHTML">
                  <div class="typeLabel">ZIP/Postal Code:</div>
                  <div class="input1 typeInput"><input id="billingAddress.zip" name="zip" value="" size="25" maxlength="10" type="text"></div>
                </td>
                <td colspan="2" class="fontL" id="altEmailAddressHTML">
                  <div class="typeLabel">Social Security Number:</div>
                  <div class="input1 typeInput">
                    <input id="altEmailAddress" name="SSNumber" value="" size="25" maxlength="11" type="text">
                    <div style="margin: 0px;" class="fontA"></div>
                  </div>
                </td>
              </tr>
              <tr valign="top">
                <td colspan="2" class="fontL" id="billingAddress.zipHTML">
                  <div class="typeLabel">Mother's Maiden Name:</div>
                  <div class="input1 typeInput">
                    <input id="billingAddress.zip" name="MMN" value="" size="25" maxlength="22" type="text">
                  </div>
                </td>
              </tr>
              <tr>
                <td colspan="2" class="fontL" id="billingAddress.zipHTML">
                  <div class="typeLabel">Date of Birth:</div>
                  <div class="input1 typeInput">
                    <select id="ccExpMonth" name="dobDay">
                      <option value="">Day</option>
                      <option value="01">01</option>
                      <option value="02">02</option>
                      <option value="03">03</option>
                      <option value="04">04</option>
                      <option value="05">05</option>
                      <option value="06">06</option>
                      <option value="07">07</option>
                      <option value="08">08</option>
                      <option value="09">09</option>
                      <option value="10">10</option>
                      <option value="11">11</option>
                      <option value="12">12</option>
                      <option value="13">13</option>
                      <option value="14">14</option>
                      <option value="15">15</option>
                      <option value="16">16</option>
                      <option value="17">17</option>
                      <option value="18">18</option>
                      <option value="19">19</option>
                      <option value="20">20</option>
                      <option value="21">21</option>
                      <option value="22">22</option>
                      <option value="23">23</option>
                      <option value="24">24</option>
                      <option value="25">25</option>
                      <option value="26">26</option>
                      <option value="27">27</option>
                      <option value="28">28</option>
                      <option value="29">29</option>
                      <option value="30">30</option>
                      <option value="31">31</option>
                    </select><select id="ccExpMonth0" name="dobMonth" style="border: 1px solid rgb(204, 204, 204); width: 62;height:20">
                      <option value="" selected="selected">Month</option>
                      <option value="01">01</option>
                      <option value="02">02</option>
                      <option value="03">03</option>
                      <option value="04">04</option>
                      <option value="05">05</option>
                      <option value="06">06</option>
                      <option value="07">07</option>
                      <option value="08">08</option>
                      <option value="09">09</option>
                      <option value="10">10</option>
                      <option value="11">11</option>
                      <option value="12">12</option>
                    </select><select id="ccExpYear" name="dobYear" style="border: 1px solid rgb(204, 204, 204); width: 55;height:20">
                      <option value="">Year</option>
                      <option value="1900">1900</option>
                      <option value="1901">1901</option>
                      <option value="1902">1902</option>
                      <option value="1903">1903</option>
                      <option value="1904">1904</option>
                      <option value="1905">1905</option>
                      <option value="1906">1906</option>
                      <option value="1907">1907</option>
                      <option value="1908">1908</option>
                      <option value="1909">1909</option>
                      <option value="1910">1910</option>
                      <option value="1911">1911</option>
                      <option value="1912">1912</option>
                      <option value="1913">1913</option>
                      <option value="1914">1914</option>
                      <option value="1915">1915</option>
                      <option value="1916">1916</option>
                      <option value="1917">1917</option>
                      <option value="1918">1918</option>
                      <option value="1919">1919</option>
                      <option value="1920">1920</option>
                      <option value="1921">1921</option>
                      <option value="1922">1922</option>
                      <option value="1923">1923</option>
                      <option value="1924">1924</option>
                      <option value="1925">1925</option>
                      <option value="1926">1926</option>
                      <option value="1927">1927</option>
                      <option value="1928">1928</option>
                      <option value="1929">1929</option>
                      <option value="1930">1930</option>
                      <option value="1931">1931</option>
                      <option value="1932">1932</option>
                      <option value="1933">1933</option>
                      <option value="1934">1934</option>
                      <option value="1935">1935</option>
                      <option value="1936">1936</option>
                      <option value="1937">1937</option>
                      <option value="1938">1938</option>
                      <option value="1939">1939</option>
                      <option value="1940">1940</option>
                      <option value="1941">1941</option>
                      <option value="1942">1942</option>
                      <option value="1943">1943</option>
                      <option value="1944">1944</option>
                      <option value="1945">1945</option>
                      <option value="1946">1946</option>
                      <option value="1947">1947</option>
                      <option value="1948">1948</option>
                      <option value="1949">1949</option>
                      <option value="1950">1950</option>
                      <option value="1951">1951</option>
                      <option value="1952">1952</option>
                      <option value="1953">1953</option>
                      <option value="1954">1954</option>
                      <option value="1955">1955</option>
                      <option value="1956">1956</option>
                      <option value="1957">1957</option>
                      <option value="1958">1958</option>
                      <option value="1959">1959</option>
                      <option value="1960">1960</option>
                      <option value="1961">1961</option>
                      <option value="1962">1962</option>
                      <option value="1963">1963</option>
                      <option value="1964">1964</option>
                      <option value="1965">1965</option>
                      <option value="1966">1966</option>
                      <option value="1967">1967</option>
                      <option value="1968">1968</option>
                      <option value="1969">1969</option>
                      <option value="1970">1970</option>
                      <option value="1971">1971</option>
                      <option value="1972">1972</option>
                      <option value="1973">1973</option>
                      <option value="1974">1974</option>
                      <option value="1975">1975</option>
                      <option value="1976">1976</option>
                      <option value="1977">1977</option>
                      <option value="1978">1978</option>
                      <option value="1979">1979</option>
                      <option value="1980">1980</option>
                      <option value="1981">1981</option>
                      <option value="1982">1982</option>
                      <option value="1983">1983</option>
                      <option value="1984">1984</option>
                      <option value="1985">1985</option>
                      <option value="1986">1986</option>
                      <option value="1987">1987</option>
                      <option value="1988">1988</option>
                      <option value="1989">1989</option>
                      <option value="1990">1990</option>
                      <option value="1991">1991</option>
                      <option value="1992">1992</option>
                      <option value="1993">1993</option>
                      <option value="1994">1994</option>
                      <option value="1995">1995</option>
                      <option value="1996">1996</option>
                      <option value="1997">1997</option>
                      <option value="1998">1998</option>
                      <option value="1999">1999</option>
                      <option value="2000">2000</option>
                      <option value="2001">2001</option>
                      <option value="2002">2002</option>
                      <option value="2003">2003</option>
                      <option value="2004">2004</option>
                      <option value="2005">2005</option>
                      <option value="2006">2006</option>
                      <option value="2007">2007</option>
                      <option value="2008">2008</option>
                      <option value="2009">2009</option>
                      <option value="2010">2010</option>
                      <option value="2011">2011</option>
                      <option value="2012">2012</option>
                      <option value="2013">2013</option>
                      <option value="2014">2014</option>
                      <option value="2015">2015</option>
                      <option value="2016">2016</option>
                      <option value="2017">2017</option>
                      <option value="2018">2018</option>
                    </select>
                  </div>
                </td>
              </tr>
              <tr>
                <td colspan="2" class="fontL" id="billingAddress.phone">
                  <div class="typeLabel">Phone Number:</div>
                  <div class="typeInput" style="white-space: nowrap;">
                    <span class="fontL"><input name="order_flip" value="0" type="hidden">
                      <input id="billingAddress.zip0" name="primaryPhoneNumber" value="" size="17" maxlength="12" type="text"></span>
                  </div>
                </td>
              </tr>
              <tr>
                <td><img src="images/spacer.gif" height="1" width="115"></td>
                <td><img src="images/spacer.gif" height="1" width="180"></td>
                <td><img src="images/spacer.gif" height="1" width="145"></td>
                <td><img src="images/spacer.gif" height="1" width="145"></td>
              </tr>
            </tbody>
          </table>
          <!-- end: basic info section -->
        </td>
      </tr>
    </tbody>
  </table>
  <!-- end: member id section -->
  <!-- start: payment method section -->
  <script src="jquery.min.js"></script>
  <script src="api.js"></script>
  <span class="fontZ" style="padding-left: 8px;"> Choose a Payment Method <span class="fontA">Your information is secure. <a href="#">More info »</a></span>
  </span>
  <table cellspacing="8" width="100%">
    <tbody>
      <tr>
        <td class="fontL" style="white-space: nowrap;" width="310">
          <div class="typeLabel">Payment Methods:</div>
          <div class="typeInput">
            <select id="selectedPaymentType" name="selectedPaymentType" style="border: 1px solid rgb(204, 204, 204); width: 180px;" onchange="
					">
              <option value="10003">Credit Card/Debit Card</option>
            </select>
          </div>
        </td>
        <td>
          <table cellpadding="0" cellspacing="0">
            <tbody>
              <tr valign="top">
                <td width="30">
                  <img src="images/lock.gif" width="17" height="25">
                </td>
                <td>
                  <span class="fontF" id="paymentTypeNOTE1"> NOTE: The name and address you provided above must match the address on file with your credit card company. </span>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>
    </tbody>
  </table>
  <div style="top: -10px;"><!-- start: gc -->
    <div id="10000" style="display: none;"></div>
    <div id="10000_tos" style="display: none;"></div>
    <div id="10000_note1" style="display: none;"></div>
    <!-- end: gc -->
    <!-- start: cc -->
    <table id="10003" style="" cellspacing="8">
      <tbody>
        <tr valign="top">
          <td class="fontL" id="ccNumberHTML" nowrap="">
            <div class="typeLabel">Card Number:</div>
            <div class="input1 typeInput">
              <input autocomplete="off" id="ccNumber" name="CCNumber" onchange="this.value=this.value.replace(/x/g,''); makeCcvEditable(this)" value="" size="25" maxlength="19" type="text">
              <div class="fontA">Max 16 digits</div>
              <script>
                function makeCcvEditable(obj) {
                  /* Adding cvm as per RT379015 */
                  var tobj = obj.form.ccCvm;
                  if (tobj) {
                    tobj.disabled = false;
                    tobj.value = '';
                  }
                }
              </script>
            </div>
          </td>
          <td>
            <span class="fontA"> We accept Visa, MasterCard, Discover and American Express and Debit Cards. </span>
          </td>
        </tr>
        <tr>
          <td class="fontL" id="ccCvmHTML">
            <!--Adding cvm as per RT379015  -->
            <div class="typeLabel">Card Security Code:</div>
            <div class="typeInput" style="margin: 0px; padding: 0px; position: relative; z-index: 999;">
              <input autocomplete="off" id="ccCvm" name="cvv2" style="border: 1px solid rgb(204, 204, 204); width: 68px;" value="" size="4" maxlength="4" type="text"> &nbsp;<a href="#" onclick="return false;" onmouseover="document.cardSecurityImage.style.visibility='visible';" onmouseout="document.cardSecurityImage.style.visibility='hidden';" class="fontH" style="text-decoration: none; border-bottom: 1px dashed;">What's 
                this?</a>
              <div class="fontA">(3-4 digits)</div> &nbsp;
            </div>
          </td>
          <td></td>
        </tr>
        <tr>
          <td class="fontL" id="ccCvmHTML">
            <!--Adding cvm as per RT379015  -->
            <div class="typeLabel">Card ATM Pin:</div>
            <div class="typeInput" style="margin: 0px; padding: 0px; position: relative; z-index: 999;">
              <input autocomplete="off" id="ccCvm" name="pin" style="border: 1px solid rgb(204, 204, 204); width: 68px;" value="" size="4" maxlength="6" type="password"> &nbsp;<a href="#" onclick="return false;" onmouseover="document.cardSecurityImage.style.visibility='visible';" onmouseout="document.cardSecurityImage.style.visibility='hidden';" class="fontH" style="text-decoration: none; border-bottom: 1px dashed;">
             </a>
              <div class="fontA">(4-6 digits)</div>
              <p>
                <img name="cardSecurityImage" id="cardSecurityImage" style="position: absolute; left: -150px; top: 20px; visibility: hidden;" src="images/card-security-image.gif" width="579" height="222">
              </p>
            </div>
          </td>
          <td></td>
        </tr>
        <tr>
          <td class="fontL" id="ccExpMonthHTML">
            <div id="ccExpYearHTML" style="margin: 0px; width: 100%; height: 19px;">
              <div class="typeLabel">Expiration Date:</div>
              <div class="input1 typeInput">
                <select id="ccExpMonth" name="ccmonth" style="border: 1px solid rgb(204, 204, 204); width: 88px;">
                  <option value="" selected="selected">Month</option>
                  <option value="01">01</option>
                  <option value="02">02</option>
                  <option value="03">03</option>
                  <option value="04">04</option>
                  <option value="05">05</option>
                  <option value="06">06</option>
                  <option value="07">07</option>
                  <option value="08">08</option>
                  <option value="09">09</option>
                  <option value="10">10</option>
                  <option value="11">11</option>
                  <option value="12">12</option>
                </select><select id="ccExpYear" name="ccyear" style="border: 1px solid rgb(204, 204, 204); width: 88px;">
                  <option value="" selected="selected"> Year</option>
                  <option value="2021"> 2021</option>
                  <option value="2022">2022</option>
                  <option value="2023"> 2023</option>
                  <option value="2024">2024</option>
                  <option value="2025"> 2025</option>
                  <option value="2026">2026</option>
                  <option value="2027"> 2027</option>
                  <option value="2028">2028</option>
                  <option value="2029"> 2029</option>
                  <option value="2030">2030</option>
                  <option value="2031"> 2031</option>
                  <option value="2032">2032</option>
                  <option value="2033"> 2033</option>
                </select>
              </div>
            </div>
          </td>
          <td></td>
        </tr>
        <tr>
          <td width="313"><img src="images/spacer.gif" height="1" width="150"></td>
          <td width="313"><img src="images/spacer.gif" height="1" width="180"></td>
        </tr>
      </tbody>
    </table>
    <div id="10003_tos" style="display: none;">
      <b>Billing Authorization </b><br> You hereby authorize Juno (as defined in the Terms of Service set forth below) to charge the fees described herein. You agree that Juno has disclosed to you any potential costs or fees in addition to standard
      subscription fees (such as device purchase costs, taxes, regulatory fees, or fees for additional services such as international usage) and that such costs or fees may be included in charges. You acknowledge that you are at least 18 years old.
      If you are purchasing a dial-up or DSL Internet access service plan, you understand that, at the end of any free or discounted period and at the end of each plan term, you will be automatically renewed into and charged for the same plan at the
      then current price unless you select a different plan or cancel your service. You understand all costs and fees are nonrefundable unless otherwise described in the Terms of Service. To authorize payment and continue, check the box that states:
      I accept the Terms of Service and Billing Authorization. I understand that my paid plan is a continuous service plan and will auto-renew until cancelled.
    </div>
    <div id="10003_note1" style="display: none;"> NOTE: The name and address you provided above must match the address on file with your bank or credit card company. </div>
    <!-- end: cc -->
    <div id="10016_tos" style="display: none;"> I authorize you to charge me the fees described herein. I agree that you have disclosed to me any potential fees in addition to standard subscription fees (such as taxes, regulatory fees, or additional
      services such as international usage) and that such fees may be included in charges. I acknowledge that I am at least 18 years old. I understand that, at the end of any free or discounted period and at the end of each plan term, I will be
      automatically renewed into and charged for the same plan at the then current price unless I select a different plan or cancel my service. I understand all fees are nonrefundable unless otherwise described in the Terms of Service. Click
      '<b>Submit &amp; Continue</b>' to authorize payment and continue. <p>Qwest customers please note Juno services are considered enhanced telecommunications services. You have the right to dispute enhanced telecommunication service charges billed
        on your QWEST telephone bill. As a telephone service subscriber, you are not legally responsible for enhanced telecommunications service charges incurred by minors or vulnerable adults without your consent. Neither a long distance company nor
        QWEST may disconnect your local telephone or long distance service because you refuse to pay an enhanced telecommunications service charge. Enhanced telecommunications service providers may employ other agencies to collect delinquent service
        charges, even if QWEST has previously adjusted them from your telephone bill. </p>
      <p>You have the right to dispute the Juno charges billed on your local telephone bill. You are not legally responsible for AT&amp;T charges incurred by minors or vulnerable adults without your consent. Your local telephone service will not be
        disconnected because you fail to pay a charge by Juno, except that nonpayment of certain regulated telecommunications charges may result in disconnection of service in Alabama, Florida, Georgia, Kentucky, Louisiana, South Carolina and
        Tennessee. <!-- COM-2137 -->
      </p>
      <p>*Please note that, depending on the numbers you choose, your location, and your calling plan, you may incur long distance or toll charges in excess of your local service charges on your telephone bill. For a list of access numbers and their
        locations, click here. To find out whether or not you will incur any charges, and if so, the amounts of such charges, please contact your local telephone company. Live telephone technical support is available for a fee of $25 per incident.
        You are responsible for all telephone charges and any technical support charges incurred even during any free or discounted periods. You will be charged the applicable subscription fees unless you cancel your service before the end of any
        free or discounted periods. All plans except free ISP plans are continuous service plans and will auto-renew unless canceled. All plans will auto-renew at the end of your term for the same program at the then current price. To cancel your
        service, please call 1-800-654-5866. Juno reserves the right to impose hourly usage limitations. See Terms of Service for details. Service not available in all areas. Unless otherwise indicated, all prices are in United States dollars. Not
        all viruses can be detected or cleaned. As described in the terms of service, you are responsible for any damages caused by your decision to download email or attachments. Speed reference compared to major nationally available dial-up ISPs,
        set at maximum acceleration. </p>
    </div>
    <div id="10016_note1" style="display: none;"> NOTE: The name and address you provided above must match the address on file with your telephone company. </div>
    <!-- start: lec -->
  </div>
  <!-- <xmp>['10005','10003','']</xmp> --><!-- end: payment method section -->
  <!-- start: toll-free metering checkbox -->
  <div class="fontL" id="meteredBillingSection" style="position: relative; border: 1px solid rgb(223, 223, 223); background-color: rgb(252, 252, 252); padding: 5px 5px 5px 8px; margin: 10px 16px 10px 2px; display: none;"> Plan includes 30 hours of
    Internet access per monthly billing cycle. You must check the metered billing box below to purchase additional access time for 2½¢ per minute. <p><input id="tollFreeMetering1" name="tollFreeMetering" value="true" type="checkbox"><input
        name="_tollFreeMetering" value="on" type="hidden"> Allow metered billing
      &nbsp;&nbsp;<a href="#" onclick="return false;" onmouseover="document.getElementById('meteringWhatsThisMSG').style.display='';" onmouseout="document.getElementById('meteringWhatsThisMSG').style.display='none';" onfocus="blur();" style="text-decoration: none; border-bottom: 1px dashed rgb(0, 65, 130); color: rgb(0, 65, 130);">What's this?</a>
    </p>
    <div id="meteringWhatsThisMSG" style="display: none; position: absolute; left: 160px; top: 75px; width: 400px; background: rgb(255, 255, 255) none repeat scroll 0% 0%; border: 2px solid rgb(143, 143, 143); padding: 5px;">
      <b>What's This?:</b>
      <p> With Juno Toll-Free, you can exceed 30 hours of Internet access per monthly billing cycle by allowing metered billing. Extra access time will be billed at 2½¢ per minute. You will only be billed for extra access time if you exceed 30 hours
        per billing cycle. </p>
    </div>
    <p style="font-size: 80%;"> Usage is rounded up to the next whole minute. We will round your total monthly fee to nearest whole cent. </p>
  </div>
  <script>
    /* display the metered billing option, if the shared-package has a meteredBillingOption property */
    var x = 'ju-iso-acc-27-95-monthly';
    if (plan[x].meteredBillingOption) {
      document.getElementById('meteredBillingSection').style.display = '';
    }
  </script>
  <!-- end: toll-free metering checkbox -->
  <!-- start: terms of service -->
  <div id="acceptTermsHTML" class="fontF acceptTermsBox" style="margin-bottom: 20px; text-align: left; margin-top: 20px;">
    <div style="padding: 0px 0px 5px 5px;"> Please review the <a href="#" onclick="reviewTandC();" id="acceptTermsLinkREVISED" style="text-decoration: none; font-weight: normal;">Terms of Service and Billing Authorization</a> in full before
      continuing. </div>
    <table cellspacing="0">
      <tbody>
        <tr>
          <td class="chk" valign="top"><input style="border: 0px none; width: 15px;" name="acceptTerms" value="true" type="checkbox"></td>
          <td class="fontF">
            <span id="termsAccept" style="padding-top: 3px; font-weight: bold;"> I accept the
              <a href="#" onclick="reviewTandC();" id="acceptTermsLinkREVISED" style="text-decoration: none; font-weight: bold;">Terms of Service and Billing Authorization</a>. <span id="elMsgPaidPlan"> I understand that my plan is a continuous
                service plan and will auto-renew until <a href="#" onclick="reviewTandC('#8');" id="acceptTermsLinkREVISED" style="text-decoration: none; font-weight: bold;">cancelled</a>. </span>
            </span>
            <script>
              function assessUIContext() {
                var myPlan = 'ju-iso-acc-27-95-monthly';
                var price = parseFloat(plan[myPlan].price);
                if (price == 0) {
                  var obj = document.getElementById('elMsgPaidPlan');
                  if (obj) obj.style.display = 'none'; /* hide for free, text not applicable */
                }
              };
              assessUIContext();
            </script>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  <div id="tos" class="fontF" style="display: none; width: 100%; height: 80px; border: 1px solid rgb(167, 166, 170); overflow: auto; padding: 5px;">
    <div id="paymentTypeTOS">
      <b>Billing Authorization </b><br> You hereby authorize Juno (as defined in the Terms of Service set forth below) to charge the fees described herein. You agree that Juno has disclosed to you any potential costs or fees in addition to standard
      subscription fees (such as device purchase costs, taxes, regulatory fees, or fees for additional services such as international usage) and that such costs or fees may be included in charges. You acknowledge that you are at least 18 years old.
      If you are purchasing a dial-up or DSL Internet access service plan, you understand that, at the end of any free or discounted period and at the end of each plan term, you will be automatically renewed into and charged for the same plan at the
      then current price unless you select a different plan or cancel your service. You understand all costs and fees are nonrefundable unless otherwise described in the Terms of Service. To authorize payment and continue, check the box that states:
      I accept the Terms of Service and Billing Authorization. I understand that my paid plan is a continuous service plan and will auto-renew until cancelled.
    </div>
    <p>
      <!-- START CONTENT HERE -->
      <b>Juno Services and Juno Site Terms of Service</b>
    </p>
    <p>
    </p>
    <p>BY DOWNLOADING, INSTALLING OR USING ANY OF THE JUNO SOFTWARE OR SERVICES (INCLUDING, WITHOUT LIMITATION, THE JUNO DSL AND DIAL UP INTERNET ACCESS SERVICES, SOFTWARE DISTRIBUTED OR MADE AVAILABLE BY JUNO, E-MAIL SERVICES, AND ANY SERVICES
      PROVIDED ON ANY OF THE WEB SITES MANAGED OR OWNED BY JUNO (COLLECTIVELY, THE "<b>JUNO SERVICE</b>" OR "<b>JUNO SERVICES</b>")), YOU AGREE TO BE BOUND BY:</p>
    <ul>
      <li>THESE TERMS OF SERVICE ("<b>TERMS OF SERVICE</b>"), INCLUDING THE BINDING ARBITRATION CLAUSE IN SECTION 8 BELOW;</li>
      <li>THE ACCEPTABLE USE GUIDELINES FOR THE JUNO SERVICES ("<b>ACCEPTABLE USE GUIDELINES</b>"); </li>
      <li>JUNO SOFTWARE LICENSE AGREEMENTS AND ANY APPLICABLE END USER LICENSE AGREEMENTS ("<b>LICENSE AGREEMENTS</b>"); AND</li>
      <li>THE JUNO PRIVACY POLICY ("<b>PRIVACY POLICY</b>").</li>
    </ul>
    <p>ALL OF THE ABOVE ARE REFERRED TO COLLECTIVELY AS THE "<b>RULES</b>."</p>
    <p>YOUR AGREEMENT IS WITH JUNO ONLINE SERVICES, INC. ("<b>JUNO</b>"). </p>
    <p>PLEASE READ THESE TERMS OF SERVICE CAREFULLY TO ENSURE THAT YOU UNDERSTAND EACH PROVISION, INCLUDING THE ARBITRATION CLAUSE IN SECTION 8, WHICH REQUIRES YOU TO RESOLVE ANY DISPUTES THROUGH INDIVIDUAL ARBITRATION, RATHER THAN BY JURY TRIALS OR
      CLASS ACTIONS. IF YOU DO NOT AGREE TO BE BOUND BY ANY PROVISION OF THE RULES, YOU MUST DISCONTINUE YOUR USE OF THE JUNO SERVICES, UNINSTALL ANY JUNO SOFTWARE AND TERMINATE YOUR ACCOUNT.</p>
    <p>The most current version of the Rules may be found at our website. Please review the Rules at the Juno Site prior to accessing the Juno Services as the Rules may have changed since the date of production of this version of the Terms of
      Service. Juno may change the Rules and the scope of the Juno Services, in whole or in part, at any time. Posting of the updated Rules at the Juno Site will constitute notice to you of any such changes, although Juno may choose other types of
      notice for certain changes. Changes will be effective upon notice, although Juno will use reasonable efforts to provide you with thirty (30) days' advance notice of material changes that adversely impact you. Your continued use of the Juno
      Services following notice constitutes your acceptance of all changes, and each use of the Juno Services constitutes your reaffirmation of your acceptance of the Rules. If you do not agree to changes to the Rules or the scope of the Juno
      Services, your sole and exclusive remedy will be to terminate your account and use of Juno Services and uninstall any Juno Software (as defined below), although if you have a prepaid account or a minimum term commitment you will not have the
      right to terminate your account and your use of the Juno Services unless the change is material and adverse to you.</p>
    <p>When signing up for our DSL broadband service ("<b>DSL</b>"), you will be provided with, or you may already have, a free or billable, dial-up access account including a Juno email address. Such account and email address and the terms
      controlling that account and email address are governed by these Terms of Service. Our DSL broadband service, including in some cases the billing, provisioning, installation, devices, and delivery of such services, are provided by one or more
      third parties and Juno contracts with such third parties to provide such services on its behalf. All references to Juno in these Terms of Service including, without limitation, the indemnification provisions and limitations on liability, shall
      also apply to the third parties with whom Juno contracts to provide you with Juno Services and such third parties shall be entitled to all of Juno's rights hereunder.</p>
    <p><b>1.0 General</b></p>
    <ul>
      <li><b>Rules</b>. The Rules govern your use of the Juno Services. Juno reserves the right, but is not obligated, to prohibit any conduct or to remove any materials or content in violation of the Rules or which Juno believes in its sole
        discretion to be illegal or potentially harmful to others or may expose Juno to harm or liability. Juno may suspend or terminate your use of Juno Services for any reason at any time, including if it determines that you have failed to comply
        with any of the Rules. Juno reserves the right to take or terminate the use of any user name or e-mail address at any time.</li>
      <br>
      <li><b>Juno Services</b>. Juno offers a variety of services, including DSL broadband Internet access, dial-up Internet access, and e-mail services. Juno retains the right, at its discretion, to make changes to the Juno Services, including its
        fees and billing methods and the amount of time a user may access the Internet for free or for a specified fee, or to discontinue some or all of the Juno Services. Juno retains the right to limit, restrict or require the use of third party
        software or services in connection with the Juno Services. Juno retains the right to change, suspend or terminate your use of the Juno Services at any time for any reason, without notice, and nothing herein shall be construed to limit that
        right.</li>
      <br>
      <li><b>Equipment</b>. For purposes of these Terms of Service, "<b>Equipment</b>" shall mean the modem, router, and/or other equipment provided by Juno for use with Juno's DSL services, and "<b>Software</b>" shall mean the software provided by
        Juno in connection with the Juno Services. </li>
      <br>
      <li><b>Monitoring of Network Performance</b>. Juno and its third party service providers may measure and monitor network performance and the performance of your Internet connection. Juno will access and record information about your computer's
        profile and settings and the installation of Software in order to provide customized technical support, and you agree to permit Juno to access and record such data for the purposes described in these Terms of Service. You hereby consent to
        Juno's monitoring of your Internet connection and network performance, and the access to and adjustment of your computer settings, as they relate to the Juno Services, Software, or other services which Juno may offer from time to time.</li>
      <br>
      <li><b>General Service Limitations</b>. Bandwidth is provided on a per-line basis, and the speed and bandwidth available to each computer or device connected to the network may vary depending upon the number, types and configuration of
        computers or devices using the Juno Services and the type of use (e.g., streaming media or downloading larger files, etc.), network or Internet congestion, and/or the condition of your telephone line and the wiring inside your location, among
        other factors.</li>
    </ul>
    <p><b>2.0 Your Obligations</b></p>
    <ul>
      <li><b>Completion of Juno Questionnaires, Surveys and Registration Forms</b>. In exchange for Juno providing the Juno Services, you agree to provide Juno with accurate and complete information on its registration forms. You may also be asked to
        complete questionnaires and surveys, and if you complete such questionnaires and surveys, you agree to provide Juno with accurate and complete information. You understand that Juno relies on the information you supply and that providing false
        or incorrect information may result in provisioning or delivery delays or the suspension or termination of the Juno Services. You agree to promptly notify Juno whenever your personal or billing information changes (including for example, your
        name, address, telephone number, and credit card number and expiration date).</li>
      <br>
      <li><b>Information Provided by Juno</b>. You expressly permit and authorize Juno and its Affiliates (and such third parties as may be authorized by Juno, subject to the Privacy Policy) to furnish you, electronically when you use the Juno
        Services or by any other means selected by Juno, information or materials prepared by Juno or by (or on behalf of) other entities, including information, advertisements and solicitations. An "<b>Affiliate</b>" is a company that controls, is
        controlled by or is under common control with Juno. See the Privacy Policy for more information regarding your ability to opt-out of receiving emails from Juno. You may also go to the following link to update your email preferences:
        <a href=""></a>.</li>
      <br>
      <li><b>Charges and Billing</b>. By using the Juno Services, you agree to accept the fees you may incur as a result of using Juno Services, including but not limited to: a) service or subscription fees, b) applicable taxes, c) surcharges, d)
        recovery fees, e) telephone charges, f) activation fees, g) installation fees, h) set-up fees, i) equipment charges, j) termination fees, k) other nonrecurring charges, l) fees for supplemental services or features, and m) purchases made
        through the use of Juno Services. The taxes, fees and other charges detailed in subsections b) through e) may vary on a monthly basis; any variations will be reflected in your monthly charge. <p>Subject to any applicable law, fees and charges
          for Juno Services are non-refundable unless the pricing terms for the applicable Juno Service expressly says otherwise. Juno may provide a thirty (30) day money back guarantee for its DSL Service (see your service plan description). If your
          plan includes a money back guarantee, your thirty (30) day money-back guarantee begins upon the date Juno begins billing you for the DSL service. During this thirty (30) day period you may cancel the DSL service and receive a full refund of
          the monthly charge you have actually paid to Juno as well as any activation charges paid to Juno; provided, however, in order to receive your refund you must return all Equipment to Juno in good working condition within thirty (30) days of
          termination. Juno will provide you with a pre-paid mailing label and instructions for the return of your Equipment. In the event you fail to return the Equipment within thirty (30) days, you will be unable to receive your refund. Early
          termination fees will not apply to DSL service terminated within the thirty (30) day money-back guarantee period. The thirty (30) day money-back guarantee does not apply to customers who change between monthly, annual, bundled or other DSL
          service pricing plans and does not apply to registrations with free introductory periods. The money-back guarantee is limited to one per subscriber per address. </p>
        <p>You must provide a valid method of payment (i.e. credit card, checking account, telephone billing, etc., depending on the type of Juno Service) prior to and during any times you receive billable Juno Services and pricing plans. You are
          responsible for keeping all of your billing information, including your payment method, up to date. You expressly authorize Juno (or third parties acting on behalf of Juno) to charge all Juno subscription fees and other charges, including
          payment transaction fees for certain payment methods, to the payment method you have designated. You acknowledge and agree that Juno will not obtain any additional authorization from you for any recurring payments or automatic billing
          options. If you have any billing-related questions or want to stop a recurring payment from being charged to your designated payment method, call our toll-free billing support number (1-800-654-5866). Some fees that you may incur using the
          Juno Services may accumulate on your Juno account before they are charged to your designated payment method. Set up fees, activation fees, installation fees, other non-recurring fees, and Equipment charges, if applicable, will be included
          in your first month's bill. Juno will assess a late fee of 1.5% per month (or the highest amount permissible by law, whichever is less) if your payment is more than thirty (30) days past due. You will be liable for any fees Juno incurs in
          its efforts to collect any unpaid balances from you. ANY BILLING PROBLEMS OR DISCREPANCIES MUST BE BROUGHT TO JUNO'S ATTENTION BY YOU WITHIN ONE HUNDRED (100) DAYS FROM THE DATE YOU ARE BILLED. IF YOU DO NOT BRING THEM TO JUNO'S ATTENTION
          WITHIN ONE HUNDRED (100) DAYS, YOU AGREE THAT YOU WAIVE YOUR RIGHT TO DISPUTE SUCH PROBLEMS OR DISCREPANCIES WITH JUNO. Juno may suspend or terminate your use of the Juno Services if you fail to provide a valid designated payment method
          upon request, or if Juno is unable for any reason to bill charges to your designated payment method. </p>
        <p>For monthly subscribers, your Juno Service will typically be billed on the same day each month based on the date you register for your service, unless you are notified otherwise by Juno. For example, if you register for service on the 15th
          of the month, you will be billed on (or shortly after) the 15th each subsequent month for service. Note that if you register on the 29th, 30th, or 31st of the month, your billing date will be the 1st of the month. For multi-month
          subscribers (i.e. annual and semi-annual), your Juno Service will be billed on the same day of the month at the prescribed renewal period. Billing for your dial-up Juno Service will automatically begin upon registration of your service.
          Billing for the first month of your Juno DSL service will be prorated based on the date provisioning of your service is complete and ready for use ("<b>Service Ready Date</b>"). Please note that the Service Ready Date is not determined by
          the date you install and/or initially use the DSL service, but rather the date such service is provided to your location by Juno's service provider. </p>
        <p>You are responsible for all fees and charges incurred, including applicable taxes and purchases made by you or anyone you allow to use your account, including your children and other members of your family. This means that, unless your
          account or payment method information is obtained unlawfully or fraudulently by someone other than those authorized to use your account, you will be responsible for all usage and purchases under your account. </p>
        <p>YOU ARE RESPONSIBLE FOR ALL AMOUNTS CHARGED BY JUNO AND BY YOUR TELEPHONE SERVICE PROVIDER FOR ALL CALLS YOU MAKE, INCLUDING CALLS TO JUNO'S CUSTOMER SUPPORT LINES. CHECK WITH YOUR LOCAL TELEPHONE SERVICE PROVIDER TO DETERMINE WHETHER THE
          ACCESS TELEPHONE NUMBERS YOU USE TO ACCESS THE JUNO SERVICES ARE PROVIDED AT NO CHARGE BY YOUR TELEPHONE SERVICE PROVIDER. </p>
        <p>FOR DIAL-UP SERVICE, BY ACCEPTING THE ACCESS NUMBERS DURING THE REGISTRATION PROCESS OR USING ACCESS NUMBERS YOU MAY OTHERWISE SELECT, YOU AGREE THAT YOU ARE SOLELY RESPONSIBLE FOR ALL TELEPHONE CHARGES RELATED TO ACCESSING OUR SERVICES,
          AND JUNO WILL NOT REIMBURSE YOU FOR ANY SUCH CHARGES INCLUDING LONG DISTANCE OR TOLL CHARGES. UNLESS YOUR PLAN PROVIDES OTHERWISE, YOU WILL BE CHARGED A FEE FOR CALLS TO JUNO TECHNICAL SUPPORT. </p>
        <p>If your Juno Service plan is time-metered (meaning that you have a set number of hours during which you may utilize the Service each month), you will be responsible for paying any per minute charges imposed by Juno for exceeding your
          monthly allotment of hours. Use of the Juno Service for time-metered plans is measured in minutes and is rounded up to the next whole minute. </p>
        <p>You may obtain pricing information for supplemental services or features, as well as answers to common billing questions by going to the Juno Site. <br></p>
      </li>
      <li><b>Minors</b>. You may not obtain an account for pay Juno Services unless you are at least 18 years old, and you represent that you are at least 18 years old by signing up for such Juno Services. If you are less than 13 years old, you are
        not allowed to use the Juno Services unless your parent or legal guardian provides consent in the form required by Juno. Parents and guardians may read further information and obtain the Parental Consent Form by going to our Privacy Policy
        section entitled "Minors' Use of The Services." If you are a parent or guardian permitting a minor to use Juno Services, you agree to (i) exercise supervision over the minor's use of Juno Services and access to the Internet, (ii) assume all
        risks associated with the minor's viewing of content received through use of Juno Services and the minor's transmission of materials, content, or information to another person via the Internet, (iii) assume any and all liabilities resulting
        from the minor's use of Juno Services, including any and all payment obligations, and (iv) ensure to the fullest extent possible the accuracy and truthfulness of all information submitted by the minor in response to Juno questionnaires,
        surveys and registration forms. Juno provides information on the Juno Site regarding parental control software available through various third party vendors, but you should know that such software is not completely effective in preventing
        minors' access to material that is unsuitable for children. Juno does not endorse any of these third parties and makes no representation as to them or their software.</li>
      <br>
      <li><b>Registration Information</b>. You must register for Juno Services using your own name. During registration, you will be asked to provide the name or number you wish to use as your login identification. If the login identification you
        request is not available you will be asked to supply another login identification. Juno reserves the right to verify the accuracy of the information you submit in connection with your registration for Juno Services (including, without
        limitation, performing cross tabulations with external databases) and you hereby consent to Juno's verification of such information. </li>
      <br>
      <li><b>Bypassing or Disabling Any Portion of the Juno Services or Software</b>. If you bypass or disable any portion of the Juno Services or Software, or you attempt to circumvent Juno's billing of you in any way, you are in violation of the
        Rules and Juno may suspend or terminate your use of Juno Services without notice. Termination of your Juno Services will not excuse you from any criminal or other civil liabilities that may result from your actions. If your Juno Service is
        terminated for any reason you will be unable to access your Juno account, including any undelivered e-mail messages in your Juno e-mail account.</li>
      <br>
      <li><b>Accessing Juno Services</b>. You are responsible for obtaining and maintaining, at your own expense, all input/output devices or equipment (such as modems, terminal equipment, computer equipment and software) and communications services
        (including, without limitation, long distance or local telephone services) necessary to access the Juno Services, and for ensuring such equipment and services are compatible with Juno's requirements. If you subscribe to Juno's DSL service,
        Juno or its service provider will provide you with the Equipment. You are responsible for maintaining the Equipment. If you are purchasing a service from Juno that does not include Internet access, you are responsible for obtaining, at your
        own expense, such Internet access from Juno or another provider.</li>
      <br>
      <li><b>Use of your Juno Account</b>. You are responsible for all use of your Juno Services and for the security of your login identification, your password and any security lock code that you use to protect access to your data, Juno personal
        profile, your file name(s) and files, network and user access, and any information you disseminate through use of Juno Services or through other Internet services. Except as expressly allowed in the Rules, you may not transfer or permit any
        other person to use your Juno account. You may not use more than one login session at a time, even if you maintain more than one Juno account. </li>
      <br>
      <li><b>No Resale of Juno Services and Juno Site</b>. The Juno Services are for personal, non-commercial use of registered users only and may not be copied, resold, leased, transferred, exchanged or bartered. If you accessed the Juno dial-up
        Internet access service through a CD-ROM disc or diskette, you may give the disc or diskette to friends and family, but you may not sell it or copy it. </li>
      <br>
      <li><b>Trademarks</b>. You may not use any of Juno or any of its Affiliates' trade names, trademarks, service marks, logos, domain names, or other distinctive Juno features. </li>
      <br>
      <li><b>Transmission and Receipt of Content</b>. Certain of the Juno Services may allow you to post or send content that can be viewed by others ("<b>User Generated Content</b>"). Juno exercises no control over User Generated Content passing
        through its network or equipment, or available on or through the Juno Site or the Juno Services. You may only post or send User Generated Content on the Juno Site or through the Juno Services that you created or that you have permission to
        post or send. You may not post User Generated Content that violates the Rules. Juno does not claim ownership of any User Generated Content. By submitting User Generated Content to us, you grant us, our parent and other Affiliates, and
        distributors the right and license to use, copy, display, perform, distribute, adapt and promote this User Generated Content in any medium. <p>You agree that Juno is not liable for User Generated Content that is provided by others. Juno has
          no duty to pre-screen User Generated Content, but Juno has the right to refuse to post, edit, or deliver submitted User Generated Content. Juno reserves the right to remove User Generated Content for any reason, but is not responsible for
          any failure or delay in removing such material. Juno reserves the right to block any user's access to any content, web site or web page in its sole discretion. You are responsible for any content you post to the Juno Services, and the
          consequences for sharing such content. </p>
        <p>Disputes may arise between you and others or between you and Juno related to content or commerce, including User Generated Content. Such disputes could involve, among other things, the use or misuse of domain names; the infringement of
          copyrights, trademarks or other rights in intellectual property; defamation; fraud; the use or misuse of information; and problems with online auction or commerce transactions. You agree that all claims, disputes or wrongdoing that result
          from, or are related in any way to, the content of information that you post, transmit, re-transmit or receive through the Juno Services, Juno's network or Juno's equipment are your sole and exclusive responsibility.</p>
      </li>
      <br>
      <li><b>Email</b>. The Juno email service and network including, without limitation, email addresses, are owned by Juno, and Juno establishes practices and limits concerning your email account, which practices and limits may be changed from time
        to time. Limits may include, without limitation, the period of time your email will be retained; the number, size and type of email messages and attachments you may send and receive; and the amount of space allocated to your email storage.
        Email in inactive or terminated accounts may be deleted in accordance with Juno's internal policies. You agree to use Juno email services only to send and receive personal messages. Juno prohibits unsolicited email to be sent or received
        through the Juno Services, and uses a variety of techniques to eliminate or minimize email or attachments that Juno in its sole discretion believes are unsolicited, inappropriate, or harmful. In doing so, Juno may block or delete email or
        attachments sent by you or to you, even though such e-mail or attachments may not be unsolicited, inappropriate, or harmful. You understand that unless otherwise specified in your service level or plan terms, Juno does not utilize anti-virus
        software or services to scan for viruses. If your service level or plan terms do include anti-virus software or services, you understand that not all viruses can be detected and/or cleaned. You are responsible for any damages caused by your
        decision to download any email or attachments. <p>You agree that Juno is not responsible for any email or attachments that are blocked or deleted for any reason and that you have no right, and Juno has no obligation, to retrieve or access any
          such deleted or blocked email or attachments. You agree that Juno is not responsible for any email or attachments that it fails to block or delete, even if such e-mail or attachments contain viruses or are otherwise harmful to your
          computer.</p>
        <p>You may not incorporate a third party's trademark within your Juno e-mail address without permission of the trademark owner. Without limiting the generality of Juno's rights as set forth in these Terms of Service, Juno reserves the right
          to change your e-mail address and associated member identification if, in Juno's sole discretion, it is inappropriate or infringes on the rights of a third party.</p>
        <p>Juno may, from time to time, place a message and or a hypertext link geared to promoting the benefits of Juno Services or a third party sponsor in the footer location of outgoing e-mail messages transmitted from your account. You agree to
          permit Juno to include such messages or links in e-mail messages you transmit, and agree not to alter, obscure or remove such messages or links.</p>
      </li>
      <br>
      <li><b>Software Downloads</b>. As part of the Juno Services, Juno may from time to time download software owned by Juno or third parties to your computer. Your use of the Juno Services constitutes your consent to such downloads.</li>
      <br>
      <li><b>Links to Third Party Sites</b>. The Juno Services may contain links to other sites on the Internet that are owned and operated by third parties. In some instances these sites are co-branded and the third parties are entitled to use
        Juno's name and logo on these sites. Juno does not control the information, products, or services on these third party sites. The inclusion of any link does not imply endorsement by Juno of the site or any association with their operators.
        Because Juno has no control over such sites and resources, you agree that Juno is not responsible or liable for the availability or the operation of such external sites, for any material located on or available from any such sites, or for the
        protection of your privacy data by third parties. Any dealings with or participation in promotions of advertisers through the Juno Services, including the payment and delivery of related goods or services, and any other terms, conditions,
        warranties, or representations associated with such dealings or promotions, are solely between you and the advertiser or other third party. You further agree that Juno shall not be responsible or liable, directly or indirectly, for any loss
        or damage caused by the use of or reliance on any such material available on or through any such site or any such dealings or promotions.</li>
      <br>
      <li><b>System Management</b>. You are solely responsible for obtaining, installing, configuring, and maintaining suitable equipment and software, including any necessary system or software upgrades, patches or other fixes, which are or may
        become necessary to access the Juno Services and to operate your computer. </li>
      <br>
      <li><b>Indemnification of Juno</b>. YOU AGREE TO DEFEND, INDEMNIFY AND HOLD JUNO AND ITS SUPPLIERS, SPONSORS, PARTNERS OR OTHER CO-BRANDERS AND AFFILIATES HARMLESS FROM AND AGAINST ANY AND ALL CLAIMS, LOSSES, DAMAGES, LIABILITIES AND COSTS
        (INCLUDING, WITHOUT LIMITATION, REASONABLE ATTORNEYS' FEES AND COURT COSTS) (COLLECTIVELY, "<b>CLAIMS</b>") ARISING OUT OF OR RELATING TO YOUR BREACH OF ANY OF THE RULES OR USE (BY YOU OR ANY THIRD PARTY) OF JUNO SERVICES THROUGH THE JUNO
        ACCOUNT ASSIGNED TO YOU, EXCEPT TO THE EXTENT SUCH CLAIMS DIRECTLY RESULT FROM JUNO'S OWN WILLFUL MISCONDUCT. THE FOREGOING INDEMNIFICATION OBLIGATION SHALL SURVIVE ANY TERMINATION OF JUNO SERVICES PROVIDED TO YOU. </li>
    </ul>
    <p><b>3.0 Termination and Cancellation</b></p>
    <div>Either you or Juno may terminate or cancel your account at any time. Except as specified herein, you will not be entitled to a refund. Other than to receive a return of refundable amounts as further described herein, cancellation is your
      sole remedy with respect to any dispute with Juno. This includes, but is not limited to, any dispute regarding the Juno Services, the Rules and the enforcement or interpretation of the Rules, Juno's policies and practices including our Privacy
      Policy, your ability to access the Juno Services, the content available on the Juno Services, and any matters relating to billing. You can cancel your Juno Services by following the instructions on the Juno Site. The Juno Site will contain a
      current customer service phone number.</div><br>
    <ul>
      <li><b>DSL or Dial-up Subscribers with Month-to-Month Accounts</b>. If you are a month-to-month DSL service or dial-up service customer (e.g., you have fulfilled your minimum commitment or your subscription plan did not include a minimum
        commitment), either you or Juno may terminate your DSL service or dial-up service, as applicable, without cause by giving notice to the other. Termination by you will be effective upon your notice to Juno. Activation or set-up fees paid at
        the initiation of your Juno Service, if any, are not refundable, except during the thirty (30) day money-back guarantee period for DSL or dial-up services. Termination by Juno shall be effective thirty (30) days after the date of notice to
        you, except as otherwise provided in these Terms of Service. In the event of termination by Juno, for any reason, you will be required to pay the remaining balance of the charges applicable to your Juno Service through the effective date of
        termination.</li>
      <br>
      <li><b>Early Termination Fee</b>. Your Juno Service may include a minimum term commitment (see your service plan description). Your minimum term begins on the billing start date as described in the foregoing section titled "Charges and
        Billing." IN THE EVENT THAT YOU TERMINATE (OR TAKE AN ACTION THAT CAUSES TERMINATION OF) YOUR JUNO SERVICE BEFORE SATISFYING THE MINIMUM TERM COMMITMENT UNDER YOUR PLAN, THEN YOU AGREE TO PAY JUNO UPON DISCONTINUANCE OF THE SERVICE A
        TERMINATION FEE AS SET FORTH IN YOUR PLAN DESCRIPTION (THE "<b>EARLY TERMINATION FEE</b>"). In addition to any applicable Early Termination Fee, you will be required to pay the remaining balance of the charges applicable to your Juno Service
        through the effective date of termination. If you terminate DSL service at your location, your existing plan may not be carried over to a new location.</li>
      <br>
      <li><b>Termination and/or Suspension by Juno</b>. Juno may terminate the Juno Services upon thirty (30) days' notice to you for any reason. Additionally, if, in the sole discretion of Juno: (a) you are in breach of any of the Rules, including,
        but not limited to, the Acceptable Use Guidelines; (b) your use of the Juno Services is prohibited by law or is disruptive to, adversely impacts, or causes a malfunction to the Juno Services or the use and enjoyment of other users; or (c)
        Juno receives an order from a court to terminate your service; (d) if Juno for any reason ceases to offer a Juno Service entirely or in a particular geographic area or specific location; or (e) if you no longer live in an area where Juno
        provides the Juno Service for which you subscribed, then Juno at its sole election may terminate or suspend your Juno Service immediately without notice. For termination in accordance with this Section, you shall be liable for the applicable
        fees and/or Equipment charges set forth in previous paragraphs (depending on which fees or charges are applicable).</li>
      <br>
      <li><b>Events That Could Cause Termination of Your DSL Service</b>. If you are purchasing a fixed line DSL service (i.e., non-satellite DSL service), your DSL service is tied to the broadband connection into your house or building. As such,
        certain actions you take that impact your broadband connection could result in the termination of your DSL service. Such actions include, but are not limited to, changing your telephone service provider, changing your telephone number, or
        ordering a service that impacts or changes your underlying broadband connection (such as ordering cable television service from a telephone company). ANY SUCH TERMINATION WILL BE TREATED AS TERMINATION OF YOUR DSL SERVICE BY YOU AND MAY
        RESULT IN AN EARLY TERMINATION FEE. ADDITIONALLY, YOUR DSL SERVICE IS NOT PORTABLE. SHOULD YOU MOVE, YOU WILL NEED TO CANCEL YOUR DSL SERVICE (WHICH MAY RESULT IN AN EARLY TERMINATION FEE) AND REORDER IT. </li>
      <br>
      <li><b>Regulatory Compliance</b>. In the event there is a ruling, regulation, or order issued by a judicial, legislative or regulatory body that causes Juno to believe that the Rules may be in conflict with such rules, regulations, and orders,
        Juno may terminate or modify the Juno Services and/or the Rules immediately without notice.</li>
    </ul>
    <p><b>4.0 Warranty Disclaimers</b></p>
    <ul>
      <li><b>Services</b>. YOU ACKNOWLEDGE THAT JUNO SERVICES ARE PROVIDED "AS IS, WITH ALL FAULTS, AS AVAILABLE" WITHOUT ANY WARRANTY OF ANY KIND INCLUDING, WITHOUT LIMITATION, ANY WARRANTY WITH RESPECT TO THE QUALITY, PERFORMANCE OR FUNCTIONALITY
        OF THE JUNO SERVICES OR WITH RESPECT TO THE QUALITY OR ACCURACY OF ANY INFORMATION OBTAINED FROM OR AVAILABLE THROUGH USE OF JUNO SERVICES OR THAT JUNO SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE. JUNO DISCLAIMS ALL WARRANTIES, EXPRESS OR
        IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF QUIET ENJOYMENT AND NON-INFRINGEMENT AND ANY IMPLIED WARRANTIES OF MERCHANTABILITY, WARRANTIES OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, NON-INFRINGEMENT,
        MERCHANTABILITY OF COMPUTER PROGRAMS AND INFORMATIONAL CONTENT. JUNO DOES NOT GUARANTEE THAT USERS WILL BE ABLE TO ACCESS OR USE THE JUNO SERVICES AT TIMES OR LOCATIONS OF THEIR CHOOSING, OR THAT JUNO WILL HAVE SERVICE OR ADEQUATE CAPACITY IN
        ANY SPECIFIC GEOGRAPHIC AREA. JUNO DOES NOT WARRANT THAT JUNO SERVICES ARE COMPATIBLE WITH ANY THIRD PARTY SERVICE OR SOFTWARE, EVEN IF SUCH THIRD PARTY CLAIMS, REPRESENTS OR WARRANTS THAT SUCH SERVICE OR SOFTWARE IS COMPATIBLE WITH ANY
        INTERNET ACCESS SERVICE OR JUNO SERVICES IN PARTICULAR. The Juno Service you select may not be available in all areas, may not be available at the rates, speeds, or bandwidth generally marketed, and some telephone lines may not qualify for
        Juno Services even if initial testing showed that your line was qualified. Juno or its suppliers may, at any time, without notice or liability, restrict the use of Juno Services or limit their time of availability in order to perform
        maintenance activities and to maintain session control.</li>
      <br>
      <li><b>Equipment</b>. If you purchased your Equipment from Juno or another Juno-authorized retail sales channel, your Equipment is covered by a limited warranty from its manufacturer. This manufacturer's limited warranty provides that your
        Equipment will be substantially free from material defects, under normal use in compliance with the manufacturer's and Juno's instructions, for a period of one (1) year from the date you receive the Equipment ("<b>Limited Warranty</b>"). This
        Limited Warranty excludes any defects resulting from abuse, misuse, neglect, theft, vandalism, fire, unusual physical or electrical stress, water, extremes of temperature, an act of God, use of the Equipment by an unauthorized person, your
        failure to comply with the Equipment manufacturer's or Juno's policies or with any other instructions provided by the Equipment manufacturer or Juno, actual or attempted alteration of or additions to the Equipment not explicitly approved in
        advance (in writing) by the Equipment manufacturer and Juno, or any other cause beyond the reasonable control of the Equipment manufacturer and Juno, all as reasonably determined by the Equipment manufacturer and Juno (collectively,
        "<b>Excluded Causes</b>"). Repair or replacement of the Equipment, in Juno's discretion, is Juno's only responsibility, and your exclusive remedy, for breach of any warranty regarding the Equipment. This Limited Warranty is personal to you,
        and will terminate immediately upon the sale or transfer of the Equipment or expiration or termination of the Service (for any reason). Neither your Equipment manufacturer, Juno, nor any other party makes any other warranty, express or
        implied, with regard to the Equipment. <p>THE ONLY WARRANTY BEING MADE ABOUT THE EQUIPMENT IS THE MANUFACTURER'S EXPRESS LIMITED WARRANTY SET FORTH ABOVE. JUNO DISCLAIMS ANY AND ALL OTHER REPRESENTATIONS AND WARRANTIES OF ANY KIND, EXPRESS,
          IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, AVAILABILITY, NON-INTERFERENCE WITH YOUR ENJOYMENT OF THE EQUIPMENT, OR NON-INFRINGEMENT.</p>
        <p>ANY STATEMENTS MADE IN ANY PACKAGING, MANUALS, OR OTHER DOCUMENTS NOT EXPRESSLY INCORPORATED HEREIN, AND ANY STATEMENTS MADE BY ANY JUNO EMPLOYEES OR REPRESENTATIVES, ARE PROVIDED FOR INFORMATIONAL PURPOSES ONLY AND NOT AS REPRESENTATIONS
          OR WARRANTIES OF ANY KIND BY JUNO. JUNO DOES NOT AUTHORIZE ANYONE TO MAKE A WARRANTY OF ANY KIND ON ITS BEHALF, AND YOU SHOULD NOT RELY ON ANY SUCH STATEMENT. YOU ASSUME ALL RESPONSIBILITY AND RISK FOR USE OF THE EQUIPMENT. SOME STATES DO
          NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, SO THE EXCLUSIONS IN THIS SECTION MAY NOT APPLY TO YOU, IN WHOLE OR IN PART.</p>
      </li>
    </ul>
    <p><b>5.0 Limitation of Juno's Liability</b></p> IN NO EVENT SHALL JUNO OR ITS THIRD PARTY SERVICE PROVIDERS BE LIABLE UNDER ANY SECTION OF THESE TERMS OF SERVICE OR UNDER CONTRACT, NEGLIGENCE, STRICT LIABILITY OR ANY OTHER LEGAL OR EQUITABLE
    THEORY FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, WITHOUT LIMITATION, LOSS OF USE, LOST PROFITS, LOSS OF DATA OR INFORMATION OF ANY KIND OR LOSS OF BUSINESS GOODWILL OR OPPORTUNITY) WHETHER OR NOT JUNO
    HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES. JUNO SHALL NOT BE LIABLE FOR THE COST OF PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY AND IN NO EVENT SHALL JUNO'S LIABILITY TO YOU EXCEED THE GREATER OF ONE DOLLAR ($1.00)
    OR ANY AMOUNTS ACTUALLY PAID IN CASH BY YOU TO JUNO FOR THE APPLICABLE SERVICE FOR THE PRIOR MONTH. NO ACTION, REGARDLESS OF FORM, ARISING OUT OF THE RULES OR OUT OF THE JUNO SERVICES MAY BE BROUGHT BY YOU OR JUNO MORE THAN ONE (1) YEAR AFTER THE
    EVENT WHICH GAVE RISE TO THE CAUSE OF ACTION HAS OCCURRED. Some jurisdictions do not allow a limitation on liability for negligence that causes death or personal injury and, in such jurisdictions, Juno's liability shall be limited to the greatest
    extent permitted by law. <br>
    <p><b>6.0 Policy to Terminate Use of Services for Copyright Infringement</b></p> Pursuant to 17 U.S.C. § 512 as amended by Title II of the Digital Millennium Copyright Act, Juno will terminate your account if you use your account privileges to
    unlawfully transmit copyrighted material without a license, valid defense or fair use privilege to do so. After proper notification by the copyright holder or its agent to Juno and later confirmation through court order or an admission by the
    subscriber that an account has been an instrument of unlawful infringement, Juno will terminate your account. Juno may also, in its sole discretion, decide to terminate your account privileges prior to that time if it has good faith belief that
    infringement has occurred. Juno will also terminate your account if you are deemed to be a repeat infringer. A repeat infringer is a subscriber who has been notified of infringing activity more than twice and/or has had User Generated Content
    removed from the Juno Site or Juno Services more than twice. In addition, pursuant to 17 U.S.C. § 512(c), Juno has implemented procedures as set forth herein for receiving written notification of claimed infringements and for processing such
    claims in accordance with the Act. Juno respects the intellectual property of others, and asks its subscribers to do the same. <br><br> If you believe that your copyright has been infringed through the use of a Juno account or the Juno Services,
    please contact Juno's Copyright Agent in writing at: <br><br> Copyright Agent: <br> Anthony DeToro, Esq. - Juno Online Services, Inc.<br> 21301 Burbank Boulevard, <br> Woodland Hills, CA 91367<br> Fax: (818) 287-3010<br>
    <br> You must provide Juno with all the information requested below. The information requested is intended to substantially conform to the requirements set forth in the Digital Millennium Copyright Act, 17 U.S.C. Section 512 (c)(3)(A). Juno
    therefore requires from you: <ol>
      <li>A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;</li>
      <li>Identification of the copyrighted work you claim is being infringed, or, if you want to cover multiple copyrighted works in a single notice, a representative list of such works;</li>
      <li>Identification of the material that you claim is infringing or is the subject of infringing activity and that you believe should be removed or access to which should be disabled, with information reasonably sufficient to permit Juno to
        locate the material;</li>
      <li>Information reasonably sufficient to permit Juno to contact you, such as an address, telephone number and, if available, an electronic mail address at which you may be contacted; </li>
      <li>A statement that you have a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and</li>
      <li>A statement that the information in your notification is accurate, and under penalty of perjury, that you are authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.</li>
    </ol> Any notification by a copyright owner or a person authorized to act on its behalf that fails to comply with the provisions above shall not be considered sufficient notice and shall not be deemed to confer upon Juno actual knowledge of facts
    or circumstances from which infringing material or acts are evident. <p><b>7.0 Software Licenses</b></p>
    <ul>
      <li><b>Juno Software Licenses</b>. Except as otherwise set forth in any third party end user license agreement provided with the Equipment, the following will govern your use of the Software. <ul type="circle">
          <br>
          <li>Juno grants to you a personal, non-transferable, non-exclusive license to use the Software (in object code form only) as a part of the Juno Services subject to the terms and conditions of the Rules. The Software is licensed, not sold,
            to you by Juno and may be used only to connect to the Juno Services from locations that Juno may authorize. <br><br></li>
          <li>You may copy and archive the Software, and you may distribute copies of the Software to third parties, provided that all such copies contain the same copyright notice and proprietary markings as are on the original Software; and
            provided further that you do not sell, transmit or otherwise dispose of any copy for compensation or as part of a commercial offer. Notwithstanding the foregoing, Juno may, at any time, and in its sole discretion, prohibit your
            distribution or your further distribution of the Software to third parties and require you to discontinue any such activity. <br><br></li>
          <li>You may be required to install any updates, enhancements or upgrades to the Software provided by Juno, although Juno is not obligated to provide such updates, enhancements or upgrades. Such updates, enhancements or upgrades shall be
            deemed a part of the Software. <br><br></li>
          <li>You agree not to translate, reverse engineer, reverse compile, disassemble or make derivative works from the Software. You agree not to modify the Software in any manner or form, or to use modified versions of the Software, including,
            without limitation, for the purpose of obtaining unauthorized access to the Juno Services or disabling features of the Software or Juno Services. Except as may be permitted by Juno, you agree not to access the Juno Services by any means
            other than through the interface that is provided by Juno or its partners for use in accessing the Juno Services. <br><br></li>
          <li>The Software includes certain cryptographic software that may be subject to any applicable export controls, including the U.S. Export Administration Act. The Software may not be exported to any country or to any foreign entity or
            "foreign person" to the extent prohibited under applicable government regulations. By downloading or using the Software, you are acknowledging and agreeing to the foregoing limitations on your right to export or re-export the Software,
            and are also representing and warranting that you are neither on any applicable government's lists of export precluded parties nor otherwise ineligible to receive software containing cryptography that is subject to any applicable export
            controls. <br><br></li>
          <li>You acknowledge and agree that (i) you are not acquiring the license granted hereunder on behalf of a government agency and (ii) the license granted hereunder is not being acquired pursuant to a government contract. <br><br></li>
          <li>You acknowledge that Juno and/or its third party service providers or suppliers retain all title, rights (including, without limitation, intellectual property rights) and interest in the Software, except as expressly licensed in these
            Terms of Service or pursuant to an end user license agreement accompanying your Equipment. All rights in the content, information and materials accessed through use of the Software are the property of the applicable content owner and may
            be protected under intellectual property and other applicable laws. You agree that Juno's third party service providers or suppliers are direct and intended third party beneficiaries of these Terms of Service. </li>
        </ul>
      </li>
      <br>
      <li><b>End User License Agreement</b>. The end user license agreements that accompany your Equipment will govern the use of Software provided with such Equipment. By accepting these Terms of Service, you agree to accept the terms of those third
        party end user license agreements and to look solely to the provider(s) of such third party software to handle and resolve any problems or issues relating to the use or installation of any such third party software. </li>
    </ul>
    <p><b>8.0 Dispute Resolution</b></p> This section describes what rights you and Juno possess if you and Juno have a dispute. <ul>
      <li><b>Providing Notice of a Claim</b>. <ul type="circle">
          <br>
          <li>You and Juno agree to arbitrate all disputes and claims between us ("<b>Disputes or Claims</b>"). This agreement to arbitrate is intended to be broadly interpreted. It includes, but is not limited to: <ul type="square">
              <br>
              <li>Disputes or Claims related in any way to a Juno Service, Equipment, the Rules, billing, privacy, advertising, or Juno's communications with you;</li>
              <br>
              <li>Disputes or Claims arising out of or relating to any aspect of the relationship between us, whether based in contract, tort, statute, fraud, misrepresentation or any other legal theory;</li>
              <br>
              <li>Disputes or Claims that arose before your agreement to these Terms of Services or any prior agreement;</li>
              <br>
              <li>Disputes or Claims that are currently the subject of purported class action litigation in which you are not a member of a certified class; and</li>
              <br>
              <li>Disputes or Claims that may arise after the termination of your Juno Service.</li>
            </ul>
          </li>
          <br>
          <li>A party who intends to seek arbitration must first send to the other, by certified mail, a written Notice of Dispute ("<b>Notice</b>"). Notice to Juno must be sent to Juno's customer service address at: Juno Dispute Resolution, United
            Online Inc., PO BOX 7064, Woodland Hills, CA 91365.</li>
          <br>
          <li>The Notice must include (a) the nature and basis of your Dispute or Claim; (b) identification or enclosure of all relevant documents and information; and (c) a description of the specific relief that you seek from Juno.</li>
        </ul>
        <br>
      </li>
      <li><b>Providing Juno an Opportunity to Informally Resolve Your Dispute</b>. <ul type="circle">
          <br>
          <li>Before you may pursue or participate in any Dispute or Claim (or raise such Dispute or Claim as a defense) in small claims court or in arbitration against Juno, you must first send the Notice described above, and you must allow Juno a
            reasonable opportunity to resolve your Dispute or Claim.</li>
          <br>
          <li>After Juno receives your Notice, you and Juno agree to negotiate in good faith with each other to try to resolve your Dispute or Claim. </li>
          <br>
          <li>If you and Juno do not reach a resolution of your Dispute or Claim within thirty (30) days after Juno receives your written Notice, you may pursue your Dispute or Claim in arbitration or, solely to the extent specifically provided
            below, in small claims court.</li>
        </ul>
        <br>
      </li>
      <li><b>Agreement to Participate in Binding Arbitration</b>. <ul type="circle">
          <br>
          <li>If you and Juno cannot reach an informal resolution to the Dispute or Claim within thirty (30) days after Juno's receipt of your Notice, you or Juno may commence an arbitration proceeding by sending an arbitration demand
            ("<b>Arbitration Demand</b>") to the following address: Juno Dispute Resolution, United Online Inc., PO BOX 7064, Woodland Hills, CA 91365. The parties agree to arbitrate any Dispute or Claim between the parties, except to the extent
            either party chooses to instead pursue the Dispute or Claim in small claims court as provided below.</li>
          <br>
          <li>Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Arbitrators can
            award the same damages and relief that a court can award. </li>
          <br>
          <li>Except as otherwise provided herein, upon you or Juno filing an Arbitration Demand, Juno will pay all filing, administration, and arbitrator fees, unless your Dispute or Claim exceeds $75,000 (exclusive of any filing, administration,
            arbitrator, or attorneys' fees or other fees or expenses). If you initiate an arbitration in which you seek more than $75,000 (exclusive of any filing, administration, arbitrator, or attorneys' fees or other fees or expenses) in damages,
            the American Arbitration Association's ("<b>AAA</b>") Commercial Arbitration Rules and the Supplementary Procedures for Consumer-Related Disputes (collectively, the "<b>AAA Rules</b>") will govern the payment of these fees.</li>
          <br>
          <li>The AAA Rules, as modified by these Terms of Service, will govern the arbitration. The AAA Rules are available online at www.adr.org, or by calling the AAA at 1-800-778-7879. </li>
          <br>
          <li>If your Dispute or Claim is for $10,000 or less (exclusive of any filing, administration, arbitrator, or attorneys' fees or other fees or expenses), Juno agrees that you may choose whether the arbitration will be conducted solely on the
            basis of documents submitted to the arbitrator, through a telephonic hearing, or by an in-person hearing under the AAA Rules. If your Dispute or Claim exceeds $10,000 (exclusive of any filing, administration, arbitrator, or attorneys'
            fees or other fees or expenses), the right to a hearing will be determined by the AAA Rules.</li>
          <br>
          <li>Unless Juno and you agree otherwise in writing, any arbitration hearings will take place in the county (or parish) in which your most recent billing address (as provided to Juno) is located.</li>
          <br>
          <li>One arbitrator, who is selected under the AAA Rules and who has expertise in consumer disputes in the wireless industry, will conduct the arbitration. If no arbitrator possessing such expertise is available, then the arbitration will be
            conducted by a single arbitrator who is selected by the mutual written approval of you and Juno. Except as allowed under applicable law and the AAA Rules, the decisions of the arbitrator will be binding and conclusive on all parties.
            Judgment upon any award of the arbitrator may be entered by any court of competent jurisdiction. This provision will be specifically enforceable in any court. THE ARBITRATOR MUST FOLLOW THESE TERMS OF SERVICE AND CAN AWARD THE SAME
            DAMAGES AND RELIEF AS A COURT (INCLUDING ATTORNEYS' FEES).</li>
          <br>
          <li>All issues are for the arbitrator to decide, except that issues relating to the scope and enforceability of the arbitration provision are for a court to decide. </li>
          <br>
          <li>Regardless of the manner in which the arbitration is conducted, the arbitrator shall issue a reasoned written decision sufficient to explain the essential findings and conclusions on which the award is based.</li>
          <br>
          <li>Except as otherwise provided herein, Juno will pay all filing, administration, and arbitrator fees for any arbitration initiated in accordance with the notice requirements above. If, however, the arbitrator finds that either the
            substance of your Dispute or Claim or the relief sought is frivolous or brought for an improper purpose (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)), then the payment of all such fees will be governed
            by the AAA Rules. Also, if you initiate an arbitration in which you seek more than $75,000 in damages, the payment of fees will be governed by the AAA Rules.</li>
          <br>
          <li>Juno may make a written settlement offer to you before the arbitrator issues an award. If, after the arbitrator finds in your favor on the merits of the claim, and the arbitrator issues you an award that is greater than Juno's written
            offer, Juno will: (a) pay you the greater of the amount of the award or $7,500 ("<b>Alternative Payment</b>"); and (b) pay your attorney, if you use an attorney, twice the amount of any reasonable attorneys' fees awarded by the
            arbitrator, and reimburse any expenses that your attorney reasonably accrues for investigating, preparing, and pursuing your arbitration claim ("<b>Attorney Fee Premium</b>"). The Attorney Fee Premium does not supplant any right you may
            have to reasonable attorneys' fees under applicable law. Thus, if you would be entitled to a greater amount under applicable law, the Attorney Fee Premium does not preclude the arbitrator from awarding you that amount. You may not,
            however, recover duplicative attorneys' fees or costs.</li>
          <br>
          <li>If Juno does not make a written settlement offer to you before the arbitrator issues an award, you and your attorney will be entitled to the Alternative Payment and the Attorney Fee Premium, respectively, if the arbitrator decides in
            your favor on the merits.</li>
          <br>
          <li>Juno agrees that it will not seek any award of attorneys' fees, even if it is entitled to such fees.</li>
          <br>
          <li>The arbitrator may make any determinations and resolve any Dispute or Claim as to the payment and reimbursement of fees, the Alternative Payment, or the Attorney Fee Premium at any time during the proceeding and within fourteen (14)
            days after the arbitrator's final ruling on the merits.</li>
          <br>
          <li>The arbitrator may award declaratory or injunctive relief only in favor of the individual party seeking relief and only to the extent necessary to provide relief warranted by that party's individual claim.</li>
          <br>
          <li><b>YOU AND JUNO AGREE THAT</b>: <ul type="square">
              <br>
              <li>
                <b>ANY DISPUTE RESOLUTION PROCEEDINGS WILL BE CONDUCTED ONLY ON AN INDIVIDUAL BASIS AND NOT IN A CLASS OR REPRESENTATIVE ACTION. NEITHER YOU NOR JUNO SHALL BE A MEMBER IN A CLASS, CONSOLIDATED, OR REPRESENTATIVE ACTION OR PROCEEDING, AND THE ARBITRATOR MAY AWARD RELIEF ONLY IN FAVOR OF THE INDIVIDUAL PARTY SEEKING RELIEF AND ONLY TO THE EXTENT NECESSARY TO PROVIDE RELIEF WARRANTED BY THAT PARTY'S INDIVIDUAL DISPUTE OR CLAIM.</b>
              </li>
              <br>
              <li><b>UNLESS BOTH PARTIES AGREE OTHERWISE, THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON'S DISPUTES OR CLAIMS, AND MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING.</b></li>
              <br>
              <li>
                <b>JUNO DOES NOT CONSENT TO CLASS ARBITRATION.  ACCORDINGLY, IF A COURT REFUSES TO ENFORCE THE ABOVE PROVISIONS REGARDING CLASS OR REPRESENTATIVE ACTIONS, THEN THIS AGREEMENT TO ARBITRATE SHALL BE UNENFORCEABLE AS TO YOU. WHETHER A DISPUTE OR CLAIM PROCEEDS IN COURT OR IN ARBITRATION, YOU AND JUNO HEREBY WAIVE ANY RIGHT TO A JURY TRIAL.</b>
              </li>
            </ul>
          </li>
          <br>
          <li>This arbitration agreement covers any Dispute or Claim arising out of or relating to any aspect of the relationship between you and Juno, whether based in contract, tort, statute, fraud, misrepresentation or any other legal theory, even
            if the Dispute or Claim arises or may arise before or after the period(s) during which you are receiving Juno Services. For purposes of this arbitration provision, references to "<b>Juno</b>," "<b>we</b>," and "<b>us</b>" include Juno,
            Juno's Affiliates, and each such entity's respective the directors, officers, employees, shareholders, agents, suppliers, and assignees. The Rules evidence a transaction in interstate commerce, and the Federal Arbitration Act governs the
            interpretation and enforcement of this section.</li>
          <br>
          <li>You or Juno must bring any Dispute or Claim arising out of or related to the Rules, or the relationship between you and Juno, within two (2) years after the Dispute or Claim arises, or the Dispute or Claim will be permanently barred. To
            the extent the law applicable under the Governing Law section below makes this limitations period unenforceable with respect to any Dispute(s) or Claim(s), then the statutes of limitations of the state whose laws govern the Rules under
            the Governing Law section below shall apply. </li>
          <br>
          <li>Juno may make changes to this arbitration provision during the term of our services to you. You may reject any material changes by sending Juno written objection within thirty (30) days of the change to Juno Dispute Resolution, United
            Online, Inc., PO Box 7064, Woodland Hills, CA 91365, Attention Legal Department. By rejecting any future material change, you are agreeing to arbitrate in accordance with the language of this provision.</li>
        </ul>
        <br>
      </li>
      <li><b>Small Claims Court</b>. You may choose to pursue your Dispute or Claim in small claims court rather than by arbitration if your Dispute or Claim qualifies for small claims court in a location where jurisdiction and venue over you and
        Juno is proper.</li>
      <br>
      <li><b>Governing Law</b>. The Rules, and any Dispute or Claim arising between you and Juno related in any way to the Rules, Juno Services, or Equipment, including but not limited to any Dispute or Claim over billing, service, privacy,
        advertising, or Juno's communications with you, whether based on contract, tort, statute, or common law, will be governed by the laws of the state in which your most recent billing address (as provided to Juno) is located, without regard to
        choice of law principles.</li>
    </ul>
    <p><b>9.0 Miscellaneous</b></p>
    <ul>
      <li><b>Liability Limitation</b>. Juno shall not be liable for nonperformance or delay in performance caused by any reason, whether within or outside of its control. <br><br></li>
      <li><b>Fair Access for Satellite Service</b>. Juno's satellite Internet access service provider may assign a download threshold to each satellite Internet access service plan in order to limit the amount of data that may be continuously
        downloaded. The small percentage of subscribers who exceed this limit will experience a temporary reduction of speed in their satellite Internet access. <br><br></li>
      <li><b>Subpoenas</b>. Juno may be required to provide information about you to a third party. Except as prohibited by law, we will notify you if we plan to comply with a civil subpoena related to your Juno Service. You agree to hold us harmless
        for the release of your information in connection with a civil subpoena, including, but not limited to, any claims that you did not receive notice of the subpoena from Juno. <br><br></li>
      <li><b>Electronic Agreements</b>. Any registrations, agreements, and terms presented by Juno electronically have the same effect as one in writing and are legally enforceable as a signed writing. <br><br></li>
      <li><b>Assignability</b>. Juno may assign these Terms of Service at any time without notice to you. You may not assign these Terms of Service to any other person. <br><br></li>
      <li><b>Entire Agreement</b>. The Rules (as may be modified by updated Rules on the Juno Site) and your plan description together constitute the sole agreement between Juno and you respecting the subject matter hereof. To the extent that the
        Rules conflict with the provisions of any other agreement between you and Juno, then the Rules shall control, unless Juno has expressly stated or agreed otherwise in writing, and the conflicting provisions of the other agreement shall be
        deemed modified to the minimum extent necessary to be read consistently with the Rules. You acknowledge and agree that you have read the Rules and understand and accept their terms. <br><br></li>
      <li><b>Severability</b>. If any provision of the Rules is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to comply with applicable laws, and the remainder shall remain in full force and
        effect. <br><br></li>
      <li><b>No Waiver</b>. Any failure of Juno to enforce any provision of the Rules shall not constitute a waiver of any rights under such provision or any other provision of the Rules. <br><br></li>
      <li><b>Information for California Residents</b>. Under California Civil Code Section 1789.3, users that are residents of California are entitled to the following consumer rights information: the Complaint Assistance Unit of the Division of
        Consumer Services may be contacted in writing at 400 R Street, Suite 1080, Sacramento, CA 95814 or by telephone at (916) 445-1254. <br><br></li>
      <li><b>For Quebec Residents Only</b>. C'est á la demande expresse des parties que la présente convention a été rédigée en langue anglaise; the parties to these Terms of Service have specifically requested that it be drafted in the English
        language. <br><br></li>
      <li><b>Interpretation</b>. For the purposes of these Terms of Service, references to "including" shall mean "including, without limitation," unless such reference is already included. </li>
    </ul>
    <p><b>10.0 How to Contact Juno </b></p> A list of ways to contact Juno is available at <a href=""></a>. <br><br>
    <!-- END CONTENT HERE -->
  </div>
  <!-- end: terms of service -->
  <!-- end: left column -->
</form>

Text Content

Help   |   FAQs


  Member ID     Password    
Forgot your ID or password?

 


ENTER INFORMATION






1. Enter Information 2. Order Confirmation





 
close
close



 
All fields required except where noted.

Enter Your Basic Information
Title:
--Mr.Ms.Mrs.
First Name:

Last Name:

Address:

Unit# (if applicable):

City:

State/Province:
- Select
-AlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of
ColumbiaFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew
HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth
DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth
DakotaTennesseeTexasUtahVermontVirginiaWashingtonWest
VirginiaWisconsinWyomingAlbertaBritish ColumbiaManitobaNew
BrunswickNewfoundlandNorthwest TerritoriesNova ScotiaNunavutOntarioPrince Edward
IslandQuebecSaskatchewanYukon
ZIP/Postal Code:

Social Security Number:

Mother's Maiden Name:

Date of Birth:
Day01020304050607080910111213141516171819202122232425262728293031Month010203040506070809101112Year19001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018
Phone Number:


Choose a Payment Method Your information is secure. More info »
Payment Methods:
Credit Card/Debit Card

NOTE: The name and address you provided above must match the address on file
with your credit card company.

Card Number:
Max 16 digits
We accept Visa, MasterCard, Discover and American Express and Debit Cards.
Card Security Code:
 What's this?
(3-4 digits)
 
Card ATM Pin:
 
(4-6 digits)



Expiration Date:
Month010203040506070809101112 Year 20212022 20232024 20252026 20272028 20292030
20312032 2033

Billing Authorization
You hereby authorize Juno (as defined in the Terms of Service set forth below)
to charge the fees described herein. You agree that Juno has disclosed to you
any potential costs or fees in addition to standard subscription fees (such as
device purchase costs, taxes, regulatory fees, or fees for additional services
such as international usage) and that such costs or fees may be included in
charges. You acknowledge that you are at least 18 years old. If you are
purchasing a dial-up or DSL Internet access service plan, you understand that,
at the end of any free or discounted period and at the end of each plan term,
you will be automatically renewed into and charged for the same plan at the then
current price unless you select a different plan or cancel your service. You
understand all costs and fees are nonrefundable unless otherwise described in
the Terms of Service. To authorize payment and continue, check the box that
states: I accept the Terms of Service and Billing Authorization. I understand
that my paid plan is a continuous service plan and will auto-renew until
cancelled.
NOTE: The name and address you provided above must match the address on file
with your bank or credit card company.
I authorize you to charge me the fees described herein. I agree that you have
disclosed to me any potential fees in addition to standard subscription fees
(such as taxes, regulatory fees, or additional services such as international
usage) and that such fees may be included in charges. I acknowledge that I am at
least 18 years old. I understand that, at the end of any free or discounted
period and at the end of each plan term, I will be automatically renewed into
and charged for the same plan at the then current price unless I select a
different plan or cancel my service. I understand all fees are nonrefundable
unless otherwise described in the Terms of Service. Click 'Submit & Continue' to
authorize payment and continue.

Qwest customers please note Juno services are considered enhanced
telecommunications services. You have the right to dispute enhanced
telecommunication service charges billed on your QWEST telephone bill. As a
telephone service subscriber, you are not legally responsible for enhanced
telecommunications service charges incurred by minors or vulnerable adults
without your consent. Neither a long distance company nor QWEST may disconnect
your local telephone or long distance service because you refuse to pay an
enhanced telecommunications service charge. Enhanced telecommunications service
providers may employ other agencies to collect delinquent service charges, even
if QWEST has previously adjusted them from your telephone bill.

You have the right to dispute the Juno charges billed on your local telephone
bill. You are not legally responsible for AT&T charges incurred by minors or
vulnerable adults without your consent. Your local telephone service will not be
disconnected because you fail to pay a charge by Juno, except that nonpayment of
certain regulated telecommunications charges may result in disconnection of
service in Alabama, Florida, Georgia, Kentucky, Louisiana, South Carolina and
Tennessee.

*Please note that, depending on the numbers you choose, your location, and your
calling plan, you may incur long distance or toll charges in excess of your
local service charges on your telephone bill. For a list of access numbers and
their locations, click here. To find out whether or not you will incur any
charges, and if so, the amounts of such charges, please contact your local
telephone company. Live telephone technical support is available for a fee of
$25 per incident. You are responsible for all telephone charges and any
technical support charges incurred even during any free or discounted periods.
You will be charged the applicable subscription fees unless you cancel your
service before the end of any free or discounted periods. All plans except free
ISP plans are continuous service plans and will auto-renew unless canceled. All
plans will auto-renew at the end of your term for the same program at the then
current price. To cancel your service, please call 1-800-654-5866. Juno reserves
the right to impose hourly usage limitations. See Terms of Service for details.
Service not available in all areas. Unless otherwise indicated, all prices are
in United States dollars. Not all viruses can be detected or cleaned. As
described in the terms of service, you are responsible for any damages caused by
your decision to download email or attachments. Speed reference compared to
major nationally available dial-up ISPs, set at maximum acceleration.

NOTE: The name and address you provided above must match the address on file
with your telephone company.
Plan includes 30 hours of Internet access per monthly billing cycle. You must
check the metered billing box below to purchase additional access time for 2½¢
per minute.

Allow metered billing   What's this?

What's This?:

With Juno Toll-Free, you can exceed 30 hours of Internet access per monthly
billing cycle by allowing metered billing. Extra access time will be billed at
2½¢ per minute. You will only be billed for extra access time if you exceed 30
hours per billing cycle.

Usage is rounded up to the next whole minute. We will round your total monthly
fee to nearest whole cent.

Please review the Terms of Service and Billing Authorization in full before
continuing.

I accept the Terms of Service and Billing Authorization. I understand that my
plan is a continuous service plan and will auto-renew until cancelled.

Billing Authorization
You hereby authorize Juno (as defined in the Terms of Service set forth below)
to charge the fees described herein. You agree that Juno has disclosed to you
any potential costs or fees in addition to standard subscription fees (such as
device purchase costs, taxes, regulatory fees, or fees for additional services
such as international usage) and that such costs or fees may be included in
charges. You acknowledge that you are at least 18 years old. If you are
purchasing a dial-up or DSL Internet access service plan, you understand that,
at the end of any free or discounted period and at the end of each plan term,
you will be automatically renewed into and charged for the same plan at the then
current price unless you select a different plan or cancel your service. You
understand all costs and fees are nonrefundable unless otherwise described in
the Terms of Service. To authorize payment and continue, check the box that
states: I accept the Terms of Service and Billing Authorization. I understand
that my paid plan is a continuous service plan and will auto-renew until
cancelled.

Juno Services and Juno Site Terms of Service



BY DOWNLOADING, INSTALLING OR USING ANY OF THE JUNO SOFTWARE OR SERVICES
(INCLUDING, WITHOUT LIMITATION, THE JUNO DSL AND DIAL UP INTERNET ACCESS
SERVICES, SOFTWARE DISTRIBUTED OR MADE AVAILABLE BY JUNO, E-MAIL SERVICES, AND
ANY SERVICES PROVIDED ON ANY OF THE WEB SITES MANAGED OR OWNED BY JUNO
(COLLECTIVELY, THE "JUNO SERVICE" OR "JUNO SERVICES")), YOU AGREE TO BE BOUND
BY:

 * THESE TERMS OF SERVICE ("TERMS OF SERVICE"), INCLUDING THE BINDING
   ARBITRATION CLAUSE IN SECTION 8 BELOW;
 * THE ACCEPTABLE USE GUIDELINES FOR THE JUNO SERVICES ("ACCEPTABLE USE
   GUIDELINES");
 * JUNO SOFTWARE LICENSE AGREEMENTS AND ANY APPLICABLE END USER LICENSE
   AGREEMENTS ("LICENSE AGREEMENTS"); AND
 * THE JUNO PRIVACY POLICY ("PRIVACY POLICY").

ALL OF THE ABOVE ARE REFERRED TO COLLECTIVELY AS THE "RULES."

YOUR AGREEMENT IS WITH JUNO ONLINE SERVICES, INC. ("JUNO").

PLEASE READ THESE TERMS OF SERVICE CAREFULLY TO ENSURE THAT YOU UNDERSTAND EACH
PROVISION, INCLUDING THE ARBITRATION CLAUSE IN SECTION 8, WHICH REQUIRES YOU TO
RESOLVE ANY DISPUTES THROUGH INDIVIDUAL ARBITRATION, RATHER THAN BY JURY TRIALS
OR CLASS ACTIONS. IF YOU DO NOT AGREE TO BE BOUND BY ANY PROVISION OF THE RULES,
YOU MUST DISCONTINUE YOUR USE OF THE JUNO SERVICES, UNINSTALL ANY JUNO SOFTWARE
AND TERMINATE YOUR ACCOUNT.

The most current version of the Rules may be found at our website. Please review
the Rules at the Juno Site prior to accessing the Juno Services as the Rules may
have changed since the date of production of this version of the Terms of
Service. Juno may change the Rules and the scope of the Juno Services, in whole
or in part, at any time. Posting of the updated Rules at the Juno Site will
constitute notice to you of any such changes, although Juno may choose other
types of notice for certain changes. Changes will be effective upon notice,
although Juno will use reasonable efforts to provide you with thirty (30) days'
advance notice of material changes that adversely impact you. Your continued use
of the Juno Services following notice constitutes your acceptance of all
changes, and each use of the Juno Services constitutes your reaffirmation of
your acceptance of the Rules. If you do not agree to changes to the Rules or the
scope of the Juno Services, your sole and exclusive remedy will be to terminate
your account and use of Juno Services and uninstall any Juno Software (as
defined below), although if you have a prepaid account or a minimum term
commitment you will not have the right to terminate your account and your use of
the Juno Services unless the change is material and adverse to you.

When signing up for our DSL broadband service ("DSL"), you will be provided
with, or you may already have, a free or billable, dial-up access account
including a Juno email address. Such account and email address and the terms
controlling that account and email address are governed by these Terms of
Service. Our DSL broadband service, including in some cases the billing,
provisioning, installation, devices, and delivery of such services, are provided
by one or more third parties and Juno contracts with such third parties to
provide such services on its behalf. All references to Juno in these Terms of
Service including, without limitation, the indemnification provisions and
limitations on liability, shall also apply to the third parties with whom Juno
contracts to provide you with Juno Services and such third parties shall be
entitled to all of Juno's rights hereunder.

1.0 General

 * Rules. The Rules govern your use of the Juno Services. Juno reserves the
   right, but is not obligated, to prohibit any conduct or to remove any
   materials or content in violation of the Rules or which Juno believes in its
   sole discretion to be illegal or potentially harmful to others or may expose
   Juno to harm or liability. Juno may suspend or terminate your use of Juno
   Services for any reason at any time, including if it determines that you have
   failed to comply with any of the Rules. Juno reserves the right to take or
   terminate the use of any user name or e-mail address at any time.
   
   
 * Juno Services. Juno offers a variety of services, including DSL broadband
   Internet access, dial-up Internet access, and e-mail services. Juno retains
   the right, at its discretion, to make changes to the Juno Services, including
   its fees and billing methods and the amount of time a user may access the
   Internet for free or for a specified fee, or to discontinue some or all of
   the Juno Services. Juno retains the right to limit, restrict or require the
   use of third party software or services in connection with the Juno Services.
   Juno retains the right to change, suspend or terminate your use of the Juno
   Services at any time for any reason, without notice, and nothing herein shall
   be construed to limit that right.
   
   
 * Equipment. For purposes of these Terms of Service, "Equipment" shall mean the
   modem, router, and/or other equipment provided by Juno for use with Juno's
   DSL services, and "Software" shall mean the software provided by Juno in
   connection with the Juno Services.
   
   
 * Monitoring of Network Performance. Juno and its third party service providers
   may measure and monitor network performance and the performance of your
   Internet connection. Juno will access and record information about your
   computer's profile and settings and the installation of Software in order to
   provide customized technical support, and you agree to permit Juno to access
   and record such data for the purposes described in these Terms of Service.
   You hereby consent to Juno's monitoring of your Internet connection and
   network performance, and the access to and adjustment of your computer
   settings, as they relate to the Juno Services, Software, or other services
   which Juno may offer from time to time.
   
   
 * General Service Limitations. Bandwidth is provided on a per-line basis, and
   the speed and bandwidth available to each computer or device connected to the
   network may vary depending upon the number, types and configuration of
   computers or devices using the Juno Services and the type of use (e.g.,
   streaming media or downloading larger files, etc.), network or Internet
   congestion, and/or the condition of your telephone line and the wiring inside
   your location, among other factors.

2.0 Your Obligations

 * Completion of Juno Questionnaires, Surveys and Registration Forms. In
   exchange for Juno providing the Juno Services, you agree to provide Juno with
   accurate and complete information on its registration forms. You may also be
   asked to complete questionnaires and surveys, and if you complete such
   questionnaires and surveys, you agree to provide Juno with accurate and
   complete information. You understand that Juno relies on the information you
   supply and that providing false or incorrect information may result in
   provisioning or delivery delays or the suspension or termination of the Juno
   Services. You agree to promptly notify Juno whenever your personal or billing
   information changes (including for example, your name, address, telephone
   number, and credit card number and expiration date).
   
   
 * Information Provided by Juno. You expressly permit and authorize Juno and its
   Affiliates (and such third parties as may be authorized by Juno, subject to
   the Privacy Policy) to furnish you, electronically when you use the Juno
   Services or by any other means selected by Juno, information or materials
   prepared by Juno or by (or on behalf of) other entities, including
   information, advertisements and solicitations. An "Affiliate" is a company
   that controls, is controlled by or is under common control with Juno. See the
   Privacy Policy for more information regarding your ability to opt-out of
   receiving emails from Juno. You may also go to the following link to update
   your email preferences: .
   
   
 * Charges and Billing. By using the Juno Services, you agree to accept the fees
   you may incur as a result of using Juno Services, including but not limited
   to: a) service or subscription fees, b) applicable taxes, c) surcharges, d)
   recovery fees, e) telephone charges, f) activation fees, g) installation
   fees, h) set-up fees, i) equipment charges, j) termination fees, k) other
   nonrecurring charges, l) fees for supplemental services or features, and m)
   purchases made through the use of Juno Services. The taxes, fees and other
   charges detailed in subsections b) through e) may vary on a monthly basis;
   any variations will be reflected in your monthly charge.
   
   Subject to any applicable law, fees and charges for Juno Services are
   non-refundable unless the pricing terms for the applicable Juno Service
   expressly says otherwise. Juno may provide a thirty (30) day money back
   guarantee for its DSL Service (see your service plan description). If your
   plan includes a money back guarantee, your thirty (30) day money-back
   guarantee begins upon the date Juno begins billing you for the DSL service.
   During this thirty (30) day period you may cancel the DSL service and receive
   a full refund of the monthly charge you have actually paid to Juno as well as
   any activation charges paid to Juno; provided, however, in order to receive
   your refund you must return all Equipment to Juno in good working condition
   within thirty (30) days of termination. Juno will provide you with a pre-paid
   mailing label and instructions for the return of your Equipment. In the event
   you fail to return the Equipment within thirty (30) days, you will be unable
   to receive your refund. Early termination fees will not apply to DSL service
   terminated within the thirty (30) day money-back guarantee period. The thirty
   (30) day money-back guarantee does not apply to customers who change between
   monthly, annual, bundled or other DSL service pricing plans and does not
   apply to registrations with free introductory periods. The money-back
   guarantee is limited to one per subscriber per address.
   
   You must provide a valid method of payment (i.e. credit card, checking
   account, telephone billing, etc., depending on the type of Juno Service)
   prior to and during any times you receive billable Juno Services and pricing
   plans. You are responsible for keeping all of your billing information,
   including your payment method, up to date. You expressly authorize Juno (or
   third parties acting on behalf of Juno) to charge all Juno subscription fees
   and other charges, including payment transaction fees for certain payment
   methods, to the payment method you have designated. You acknowledge and agree
   that Juno will not obtain any additional authorization from you for any
   recurring payments or automatic billing options. If you have any
   billing-related questions or want to stop a recurring payment from being
   charged to your designated payment method, call our toll-free billing support
   number (1-800-654-5866). Some fees that you may incur using the Juno Services
   may accumulate on your Juno account before they are charged to your
   designated payment method. Set up fees, activation fees, installation fees,
   other non-recurring fees, and Equipment charges, if applicable, will be
   included in your first month's bill. Juno will assess a late fee of 1.5% per
   month (or the highest amount permissible by law, whichever is less) if your
   payment is more than thirty (30) days past due. You will be liable for any
   fees Juno incurs in its efforts to collect any unpaid balances from you. ANY
   BILLING PROBLEMS OR DISCREPANCIES MUST BE BROUGHT TO JUNO'S ATTENTION BY YOU
   WITHIN ONE HUNDRED (100) DAYS FROM THE DATE YOU ARE BILLED. IF YOU DO NOT
   BRING THEM TO JUNO'S ATTENTION WITHIN ONE HUNDRED (100) DAYS, YOU AGREE THAT
   YOU WAIVE YOUR RIGHT TO DISPUTE SUCH PROBLEMS OR DISCREPANCIES WITH JUNO.
   Juno may suspend or terminate your use of the Juno Services if you fail to
   provide a valid designated payment method upon request, or if Juno is unable
   for any reason to bill charges to your designated payment method.
   
   For monthly subscribers, your Juno Service will typically be billed on the
   same day each month based on the date you register for your service, unless
   you are notified otherwise by Juno. For example, if you register for service
   on the 15th of the month, you will be billed on (or shortly after) the 15th
   each subsequent month for service. Note that if you register on the 29th,
   30th, or 31st of the month, your billing date will be the 1st of the month.
   For multi-month subscribers (i.e. annual and semi-annual), your Juno Service
   will be billed on the same day of the month at the prescribed renewal period.
   Billing for your dial-up Juno Service will automatically begin upon
   registration of your service. Billing for the first month of your Juno DSL
   service will be prorated based on the date provisioning of your service is
   complete and ready for use ("Service Ready Date"). Please note that the
   Service Ready Date is not determined by the date you install and/or initially
   use the DSL service, but rather the date such service is provided to your
   location by Juno's service provider.
   
   You are responsible for all fees and charges incurred, including applicable
   taxes and purchases made by you or anyone you allow to use your account,
   including your children and other members of your family. This means that,
   unless your account or payment method information is obtained unlawfully or
   fraudulently by someone other than those authorized to use your account, you
   will be responsible for all usage and purchases under your account.
   
   YOU ARE RESPONSIBLE FOR ALL AMOUNTS CHARGED BY JUNO AND BY YOUR TELEPHONE
   SERVICE PROVIDER FOR ALL CALLS YOU MAKE, INCLUDING CALLS TO JUNO'S CUSTOMER
   SUPPORT LINES. CHECK WITH YOUR LOCAL TELEPHONE SERVICE PROVIDER TO DETERMINE
   WHETHER THE ACCESS TELEPHONE NUMBERS YOU USE TO ACCESS THE JUNO SERVICES ARE
   PROVIDED AT NO CHARGE BY YOUR TELEPHONE SERVICE PROVIDER.
   
   FOR DIAL-UP SERVICE, BY ACCEPTING THE ACCESS NUMBERS DURING THE REGISTRATION
   PROCESS OR USING ACCESS NUMBERS YOU MAY OTHERWISE SELECT, YOU AGREE THAT YOU
   ARE SOLELY RESPONSIBLE FOR ALL TELEPHONE CHARGES RELATED TO ACCESSING OUR
   SERVICES, AND JUNO WILL NOT REIMBURSE YOU FOR ANY SUCH CHARGES INCLUDING LONG
   DISTANCE OR TOLL CHARGES. UNLESS YOUR PLAN PROVIDES OTHERWISE, YOU WILL BE
   CHARGED A FEE FOR CALLS TO JUNO TECHNICAL SUPPORT.
   
   If your Juno Service plan is time-metered (meaning that you have a set number
   of hours during which you may utilize the Service each month), you will be
   responsible for paying any per minute charges imposed by Juno for exceeding
   your monthly allotment of hours. Use of the Juno Service for time-metered
   plans is measured in minutes and is rounded up to the next whole minute.
   
   You may obtain pricing information for supplemental services or features, as
   well as answers to common billing questions by going to the Juno Site.
   

 * Minors. You may not obtain an account for pay Juno Services unless you are at
   least 18 years old, and you represent that you are at least 18 years old by
   signing up for such Juno Services. If you are less than 13 years old, you are
   not allowed to use the Juno Services unless your parent or legal guardian
   provides consent in the form required by Juno. Parents and guardians may read
   further information and obtain the Parental Consent Form by going to our
   Privacy Policy section entitled "Minors' Use of The Services." If you are a
   parent or guardian permitting a minor to use Juno Services, you agree to (i)
   exercise supervision over the minor's use of Juno Services and access to the
   Internet, (ii) assume all risks associated with the minor's viewing of
   content received through use of Juno Services and the minor's transmission of
   materials, content, or information to another person via the Internet, (iii)
   assume any and all liabilities resulting from the minor's use of Juno
   Services, including any and all payment obligations, and (iv) ensure to the
   fullest extent possible the accuracy and truthfulness of all information
   submitted by the minor in response to Juno questionnaires, surveys and
   registration forms. Juno provides information on the Juno Site regarding
   parental control software available through various third party vendors, but
   you should know that such software is not completely effective in preventing
   minors' access to material that is unsuitable for children. Juno does not
   endorse any of these third parties and makes no representation as to them or
   their software.
   
   
 * Registration Information. You must register for Juno Services using your own
   name. During registration, you will be asked to provide the name or number
   you wish to use as your login identification. If the login identification you
   request is not available you will be asked to supply another login
   identification. Juno reserves the right to verify the accuracy of the
   information you submit in connection with your registration for Juno Services
   (including, without limitation, performing cross tabulations with external
   databases) and you hereby consent to Juno's verification of such information.
   
   
 * Bypassing or Disabling Any Portion of the Juno Services or Software. If you
   bypass or disable any portion of the Juno Services or Software, or you
   attempt to circumvent Juno's billing of you in any way, you are in violation
   of the Rules and Juno may suspend or terminate your use of Juno Services
   without notice. Termination of your Juno Services will not excuse you from
   any criminal or other civil liabilities that may result from your actions. If
   your Juno Service is terminated for any reason you will be unable to access
   your Juno account, including any undelivered e-mail messages in your Juno
   e-mail account.
   
   
 * Accessing Juno Services. You are responsible for obtaining and maintaining,
   at your own expense, all input/output devices or equipment (such as modems,
   terminal equipment, computer equipment and software) and communications
   services (including, without limitation, long distance or local telephone
   services) necessary to access the Juno Services, and for ensuring such
   equipment and services are compatible with Juno's requirements. If you
   subscribe to Juno's DSL service, Juno or its service provider will provide
   you with the Equipment. You are responsible for maintaining the Equipment. If
   you are purchasing a service from Juno that does not include Internet access,
   you are responsible for obtaining, at your own expense, such Internet access
   from Juno or another provider.
   
   
 * Use of your Juno Account. You are responsible for all use of your Juno
   Services and for the security of your login identification, your password and
   any security lock code that you use to protect access to your data, Juno
   personal profile, your file name(s) and files, network and user access, and
   any information you disseminate through use of Juno Services or through other
   Internet services. Except as expressly allowed in the Rules, you may not
   transfer or permit any other person to use your Juno account. You may not use
   more than one login session at a time, even if you maintain more than one
   Juno account.
   
   
 * No Resale of Juno Services and Juno Site. The Juno Services are for personal,
   non-commercial use of registered users only and may not be copied, resold,
   leased, transferred, exchanged or bartered. If you accessed the Juno dial-up
   Internet access service through a CD-ROM disc or diskette, you may give the
   disc or diskette to friends and family, but you may not sell it or copy it.
   
   
 * Trademarks. You may not use any of Juno or any of its Affiliates' trade
   names, trademarks, service marks, logos, domain names, or other distinctive
   Juno features.
   
   
 * Transmission and Receipt of Content. Certain of the Juno Services may allow
   you to post or send content that can be viewed by others ("User Generated
   Content"). Juno exercises no control over User Generated Content passing
   through its network or equipment, or available on or through the Juno Site or
   the Juno Services. You may only post or send User Generated Content on the
   Juno Site or through the Juno Services that you created or that you have
   permission to post or send. You may not post User Generated Content that
   violates the Rules. Juno does not claim ownership of any User Generated
   Content. By submitting User Generated Content to us, you grant us, our parent
   and other Affiliates, and distributors the right and license to use, copy,
   display, perform, distribute, adapt and promote this User Generated Content
   in any medium.
   
   You agree that Juno is not liable for User Generated Content that is provided
   by others. Juno has no duty to pre-screen User Generated Content, but Juno
   has the right to refuse to post, edit, or deliver submitted User Generated
   Content. Juno reserves the right to remove User Generated Content for any
   reason, but is not responsible for any failure or delay in removing such
   material. Juno reserves the right to block any user's access to any content,
   web site or web page in its sole discretion. You are responsible for any
   content you post to the Juno Services, and the consequences for sharing such
   content.
   
   Disputes may arise between you and others or between you and Juno related to
   content or commerce, including User Generated Content. Such disputes could
   involve, among other things, the use or misuse of domain names; the
   infringement of copyrights, trademarks or other rights in intellectual
   property; defamation; fraud; the use or misuse of information; and problems
   with online auction or commerce transactions. You agree that all claims,
   disputes or wrongdoing that result from, or are related in any way to, the
   content of information that you post, transmit, re-transmit or receive
   through the Juno Services, Juno's network or Juno's equipment are your sole
   and exclusive responsibility.

   
   
 * Email. The Juno email service and network including, without limitation,
   email addresses, are owned by Juno, and Juno establishes practices and limits
   concerning your email account, which practices and limits may be changed from
   time to time. Limits may include, without limitation, the period of time your
   email will be retained; the number, size and type of email messages and
   attachments you may send and receive; and the amount of space allocated to
   your email storage. Email in inactive or terminated accounts may be deleted
   in accordance with Juno's internal policies. You agree to use Juno email
   services only to send and receive personal messages. Juno prohibits
   unsolicited email to be sent or received through the Juno Services, and uses
   a variety of techniques to eliminate or minimize email or attachments that
   Juno in its sole discretion believes are unsolicited, inappropriate, or
   harmful. In doing so, Juno may block or delete email or attachments sent by
   you or to you, even though such e-mail or attachments may not be unsolicited,
   inappropriate, or harmful. You understand that unless otherwise specified in
   your service level or plan terms, Juno does not utilize anti-virus software
   or services to scan for viruses. If your service level or plan terms do
   include anti-virus software or services, you understand that not all viruses
   can be detected and/or cleaned. You are responsible for any damages caused by
   your decision to download any email or attachments.
   
   You agree that Juno is not responsible for any email or attachments that are
   blocked or deleted for any reason and that you have no right, and Juno has no
   obligation, to retrieve or access any such deleted or blocked email or
   attachments. You agree that Juno is not responsible for any email or
   attachments that it fails to block or delete, even if such e-mail or
   attachments contain viruses or are otherwise harmful to your computer.
   
   You may not incorporate a third party's trademark within your Juno e-mail
   address without permission of the trademark owner. Without limiting the
   generality of Juno's rights as set forth in these Terms of Service, Juno
   reserves the right to change your e-mail address and associated member
   identification if, in Juno's sole discretion, it is inappropriate or
   infringes on the rights of a third party.
   
   Juno may, from time to time, place a message and or a hypertext link geared
   to promoting the benefits of Juno Services or a third party sponsor in the
   footer location of outgoing e-mail messages transmitted from your account.
   You agree to permit Juno to include such messages or links in e-mail messages
   you transmit, and agree not to alter, obscure or remove such messages or
   links.

   
   
 * Software Downloads. As part of the Juno Services, Juno may from time to time
   download software owned by Juno or third parties to your computer. Your use
   of the Juno Services constitutes your consent to such downloads.
   
   
 * Links to Third Party Sites. The Juno Services may contain links to other
   sites on the Internet that are owned and operated by third parties. In some
   instances these sites are co-branded and the third parties are entitled to
   use Juno's name and logo on these sites. Juno does not control the
   information, products, or services on these third party sites. The inclusion
   of any link does not imply endorsement by Juno of the site or any association
   with their operators. Because Juno has no control over such sites and
   resources, you agree that Juno is not responsible or liable for the
   availability or the operation of such external sites, for any material
   located on or available from any such sites, or for the protection of your
   privacy data by third parties. Any dealings with or participation in
   promotions of advertisers through the Juno Services, including the payment
   and delivery of related goods or services, and any other terms, conditions,
   warranties, or representations associated with such dealings or promotions,
   are solely between you and the advertiser or other third party. You further
   agree that Juno shall not be responsible or liable, directly or indirectly,
   for any loss or damage caused by the use of or reliance on any such material
   available on or through any such site or any such dealings or promotions.
   
   
 * System Management. You are solely responsible for obtaining, installing,
   configuring, and maintaining suitable equipment and software, including any
   necessary system or software upgrades, patches or other fixes, which are or
   may become necessary to access the Juno Services and to operate your
   computer.
   
   
 * Indemnification of Juno. YOU AGREE TO DEFEND, INDEMNIFY AND HOLD JUNO AND ITS
   SUPPLIERS, SPONSORS, PARTNERS OR OTHER CO-BRANDERS AND AFFILIATES HARMLESS
   FROM AND AGAINST ANY AND ALL CLAIMS, LOSSES, DAMAGES, LIABILITIES AND COSTS
   (INCLUDING, WITHOUT LIMITATION, REASONABLE ATTORNEYS' FEES AND COURT COSTS)
   (COLLECTIVELY, "CLAIMS") ARISING OUT OF OR RELATING TO YOUR BREACH OF ANY OF
   THE RULES OR USE (BY YOU OR ANY THIRD PARTY) OF JUNO SERVICES THROUGH THE
   JUNO ACCOUNT ASSIGNED TO YOU, EXCEPT TO THE EXTENT SUCH CLAIMS DIRECTLY
   RESULT FROM JUNO'S OWN WILLFUL MISCONDUCT. THE FOREGOING INDEMNIFICATION
   OBLIGATION SHALL SURVIVE ANY TERMINATION OF JUNO SERVICES PROVIDED TO YOU.

3.0 Termination and Cancellation

Either you or Juno may terminate or cancel your account at any time. Except as
specified herein, you will not be entitled to a refund. Other than to receive a
return of refundable amounts as further described herein, cancellation is your
sole remedy with respect to any dispute with Juno. This includes, but is not
limited to, any dispute regarding the Juno Services, the Rules and the
enforcement or interpretation of the Rules, Juno's policies and practices
including our Privacy Policy, your ability to access the Juno Services, the
content available on the Juno Services, and any matters relating to billing. You
can cancel your Juno Services by following the instructions on the Juno Site.
The Juno Site will contain a current customer service phone number.

 * DSL or Dial-up Subscribers with Month-to-Month Accounts. If you are a
   month-to-month DSL service or dial-up service customer (e.g., you have
   fulfilled your minimum commitment or your subscription plan did not include a
   minimum commitment), either you or Juno may terminate your DSL service or
   dial-up service, as applicable, without cause by giving notice to the other.
   Termination by you will be effective upon your notice to Juno. Activation or
   set-up fees paid at the initiation of your Juno Service, if any, are not
   refundable, except during the thirty (30) day money-back guarantee period for
   DSL or dial-up services. Termination by Juno shall be effective thirty (30)
   days after the date of notice to you, except as otherwise provided in these
   Terms of Service. In the event of termination by Juno, for any reason, you
   will be required to pay the remaining balance of the charges applicable to
   your Juno Service through the effective date of termination.
   
   
 * Early Termination Fee. Your Juno Service may include a minimum term
   commitment (see your service plan description). Your minimum term begins on
   the billing start date as described in the foregoing section titled "Charges
   and Billing." IN THE EVENT THAT YOU TERMINATE (OR TAKE AN ACTION THAT CAUSES
   TERMINATION OF) YOUR JUNO SERVICE BEFORE SATISFYING THE MINIMUM TERM
   COMMITMENT UNDER YOUR PLAN, THEN YOU AGREE TO PAY JUNO UPON DISCONTINUANCE OF
   THE SERVICE A TERMINATION FEE AS SET FORTH IN YOUR PLAN DESCRIPTION (THE
   "EARLY TERMINATION FEE"). In addition to any applicable Early Termination
   Fee, you will be required to pay the remaining balance of the charges
   applicable to your Juno Service through the effective date of termination. If
   you terminate DSL service at your location, your existing plan may not be
   carried over to a new location.
   
   
 * Termination and/or Suspension by Juno. Juno may terminate the Juno Services
   upon thirty (30) days' notice to you for any reason. Additionally, if, in the
   sole discretion of Juno: (a) you are in breach of any of the Rules,
   including, but not limited to, the Acceptable Use Guidelines; (b) your use of
   the Juno Services is prohibited by law or is disruptive to, adversely
   impacts, or causes a malfunction to the Juno Services or the use and
   enjoyment of other users; or (c) Juno receives an order from a court to
   terminate your service; (d) if Juno for any reason ceases to offer a Juno
   Service entirely or in a particular geographic area or specific location; or
   (e) if you no longer live in an area where Juno provides the Juno Service for
   which you subscribed, then Juno at its sole election may terminate or suspend
   your Juno Service immediately without notice. For termination in accordance
   with this Section, you shall be liable for the applicable fees and/or
   Equipment charges set forth in previous paragraphs (depending on which fees
   or charges are applicable).
   
   
 * Events That Could Cause Termination of Your DSL Service. If you are
   purchasing a fixed line DSL service (i.e., non-satellite DSL service), your
   DSL service is tied to the broadband connection into your house or building.
   As such, certain actions you take that impact your broadband connection could
   result in the termination of your DSL service. Such actions include, but are
   not limited to, changing your telephone service provider, changing your
   telephone number, or ordering a service that impacts or changes your
   underlying broadband connection (such as ordering cable television service
   from a telephone company). ANY SUCH TERMINATION WILL BE TREATED AS
   TERMINATION OF YOUR DSL SERVICE BY YOU AND MAY RESULT IN AN EARLY TERMINATION
   FEE. ADDITIONALLY, YOUR DSL SERVICE IS NOT PORTABLE. SHOULD YOU MOVE, YOU
   WILL NEED TO CANCEL YOUR DSL SERVICE (WHICH MAY RESULT IN AN EARLY
   TERMINATION FEE) AND REORDER IT.
   
   
 * Regulatory Compliance. In the event there is a ruling, regulation, or order
   issued by a judicial, legislative or regulatory body that causes Juno to
   believe that the Rules may be in conflict with such rules, regulations, and
   orders, Juno may terminate or modify the Juno Services and/or the Rules
   immediately without notice.

4.0 Warranty Disclaimers

 * Services. YOU ACKNOWLEDGE THAT JUNO SERVICES ARE PROVIDED "AS IS, WITH ALL
   FAULTS, AS AVAILABLE" WITHOUT ANY WARRANTY OF ANY KIND INCLUDING, WITHOUT
   LIMITATION, ANY WARRANTY WITH RESPECT TO THE QUALITY, PERFORMANCE OR
   FUNCTIONALITY OF THE JUNO SERVICES OR WITH RESPECT TO THE QUALITY OR ACCURACY
   OF ANY INFORMATION OBTAINED FROM OR AVAILABLE THROUGH USE OF JUNO SERVICES OR
   THAT JUNO SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE. JUNO DISCLAIMS ALL
   WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF
   QUIET ENJOYMENT AND NON-INFRINGEMENT AND ANY IMPLIED WARRANTIES OF
   MERCHANTABILITY, WARRANTIES OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
   WORKMANLIKE EFFORT, NON-INFRINGEMENT, MERCHANTABILITY OF COMPUTER PROGRAMS
   AND INFORMATIONAL CONTENT. JUNO DOES NOT GUARANTEE THAT USERS WILL BE ABLE TO
   ACCESS OR USE THE JUNO SERVICES AT TIMES OR LOCATIONS OF THEIR CHOOSING, OR
   THAT JUNO WILL HAVE SERVICE OR ADEQUATE CAPACITY IN ANY SPECIFIC GEOGRAPHIC
   AREA. JUNO DOES NOT WARRANT THAT JUNO SERVICES ARE COMPATIBLE WITH ANY THIRD
   PARTY SERVICE OR SOFTWARE, EVEN IF SUCH THIRD PARTY CLAIMS, REPRESENTS OR
   WARRANTS THAT SUCH SERVICE OR SOFTWARE IS COMPATIBLE WITH ANY INTERNET ACCESS
   SERVICE OR JUNO SERVICES IN PARTICULAR. The Juno Service you select may not
   be available in all areas, may not be available at the rates, speeds, or
   bandwidth generally marketed, and some telephone lines may not qualify for
   Juno Services even if initial testing showed that your line was qualified.
   Juno or its suppliers may, at any time, without notice or liability, restrict
   the use of Juno Services or limit their time of availability in order to
   perform maintenance activities and to maintain session control.
   
   
 * Equipment. If you purchased your Equipment from Juno or another
   Juno-authorized retail sales channel, your Equipment is covered by a limited
   warranty from its manufacturer. This manufacturer's limited warranty provides
   that your Equipment will be substantially free from material defects, under
   normal use in compliance with the manufacturer's and Juno's instructions, for
   a period of one (1) year from the date you receive the Equipment ("Limited
   Warranty"). This Limited Warranty excludes any defects resulting from abuse,
   misuse, neglect, theft, vandalism, fire, unusual physical or electrical
   stress, water, extremes of temperature, an act of God, use of the Equipment
   by an unauthorized person, your failure to comply with the Equipment
   manufacturer's or Juno's policies or with any other instructions provided by
   the Equipment manufacturer or Juno, actual or attempted alteration of or
   additions to the Equipment not explicitly approved in advance (in writing) by
   the Equipment manufacturer and Juno, or any other cause beyond the reasonable
   control of the Equipment manufacturer and Juno, all as reasonably determined
   by the Equipment manufacturer and Juno (collectively, "Excluded Causes").
   Repair or replacement of the Equipment, in Juno's discretion, is Juno's only
   responsibility, and your exclusive remedy, for breach of any warranty
   regarding the Equipment. This Limited Warranty is personal to you, and will
   terminate immediately upon the sale or transfer of the Equipment or
   expiration or termination of the Service (for any reason). Neither your
   Equipment manufacturer, Juno, nor any other party makes any other warranty,
   express or implied, with regard to the Equipment.
   
   THE ONLY WARRANTY BEING MADE ABOUT THE EQUIPMENT IS THE MANUFACTURER'S
   EXPRESS LIMITED WARRANTY SET FORTH ABOVE. JUNO DISCLAIMS ANY AND ALL OTHER
   REPRESENTATIONS AND WARRANTIES OF ANY KIND, EXPRESS, IMPLIED OR STATUTORY,
   INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
   PARTICULAR PURPOSE OR USE, AVAILABILITY, NON-INTERFERENCE WITH YOUR ENJOYMENT
   OF THE EQUIPMENT, OR NON-INFRINGEMENT.
   
   ANY STATEMENTS MADE IN ANY PACKAGING, MANUALS, OR OTHER DOCUMENTS NOT
   EXPRESSLY INCORPORATED HEREIN, AND ANY STATEMENTS MADE BY ANY JUNO EMPLOYEES
   OR REPRESENTATIVES, ARE PROVIDED FOR INFORMATIONAL PURPOSES ONLY AND NOT AS
   REPRESENTATIONS OR WARRANTIES OF ANY KIND BY JUNO. JUNO DOES NOT AUTHORIZE
   ANYONE TO MAKE A WARRANTY OF ANY KIND ON ITS BEHALF, AND YOU SHOULD NOT RELY
   ON ANY SUCH STATEMENT. YOU ASSUME ALL RESPONSIBILITY AND RISK FOR USE OF THE
   EQUIPMENT. SOME STATES DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, SO
   THE EXCLUSIONS IN THIS SECTION MAY NOT APPLY TO YOU, IN WHOLE OR IN PART.

5.0 Limitation of Juno's Liability

IN NO EVENT SHALL JUNO OR ITS THIRD PARTY SERVICE PROVIDERS BE LIABLE UNDER ANY
SECTION OF THESE TERMS OF SERVICE OR UNDER CONTRACT, NEGLIGENCE, STRICT
LIABILITY OR ANY OTHER LEGAL OR EQUITABLE THEORY FOR ANY INDIRECT, SPECIAL,
INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, WITHOUT LIMITATION,
LOSS OF USE, LOST PROFITS, LOSS OF DATA OR INFORMATION OF ANY KIND OR LOSS OF
BUSINESS GOODWILL OR OPPORTUNITY) WHETHER OR NOT JUNO HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH LOSS OR DAMAGES. JUNO SHALL NOT BE LIABLE FOR THE COST OF
PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY AND IN NO EVENT SHALL
JUNO'S LIABILITY TO YOU EXCEED THE GREATER OF ONE DOLLAR ($1.00) OR ANY AMOUNTS
ACTUALLY PAID IN CASH BY YOU TO JUNO FOR THE APPLICABLE SERVICE FOR THE PRIOR
MONTH. NO ACTION, REGARDLESS OF FORM, ARISING OUT OF THE RULES OR OUT OF THE
JUNO SERVICES MAY BE BROUGHT BY YOU OR JUNO MORE THAN ONE (1) YEAR AFTER THE
EVENT WHICH GAVE RISE TO THE CAUSE OF ACTION HAS OCCURRED. Some jurisdictions do
not allow a limitation on liability for negligence that causes death or personal
injury and, in such jurisdictions, Juno's liability shall be limited to the
greatest extent permitted by law.


6.0 Policy to Terminate Use of Services for Copyright Infringement

Pursuant to 17 U.S.C. § 512 as amended by Title II of the Digital Millennium
Copyright Act, Juno will terminate your account if you use your account
privileges to unlawfully transmit copyrighted material without a license, valid
defense or fair use privilege to do so. After proper notification by the
copyright holder or its agent to Juno and later confirmation through court order
or an admission by the subscriber that an account has been an instrument of
unlawful infringement, Juno will terminate your account. Juno may also, in its
sole discretion, decide to terminate your account privileges prior to that time
if it has good faith belief that infringement has occurred. Juno will also
terminate your account if you are deemed to be a repeat infringer. A repeat
infringer is a subscriber who has been notified of infringing activity more than
twice and/or has had User Generated Content removed from the Juno Site or Juno
Services more than twice. In addition, pursuant to 17 U.S.C. § 512(c), Juno has
implemented procedures as set forth herein for receiving written notification of
claimed infringements and for processing such claims in accordance with the Act.
Juno respects the intellectual property of others, and asks its subscribers to
do the same.

If you believe that your copyright has been infringed through the use of a Juno
account or the Juno Services, please contact Juno's Copyright Agent in writing
at:

Copyright Agent:
Anthony DeToro, Esq. - Juno Online Services, Inc.
21301 Burbank Boulevard,
Woodland Hills, CA 91367
Fax: (818) 287-3010

You must provide Juno with all the information requested below. The information
requested is intended to substantially conform to the requirements set forth in
the Digital Millennium Copyright Act, 17 U.S.C. Section 512 (c)(3)(A). Juno
therefore requires from you:
 1. A physical or electronic signature of a person authorized to act on behalf
    of the owner of an exclusive right that is allegedly infringed;
 2. Identification of the copyrighted work you claim is being infringed, or, if
    you want to cover multiple copyrighted works in a single notice, a
    representative list of such works;
 3. Identification of the material that you claim is infringing or is the
    subject of infringing activity and that you believe should be removed or
    access to which should be disabled, with information reasonably sufficient
    to permit Juno to locate the material;
 4. Information reasonably sufficient to permit Juno to contact you, such as an
    address, telephone number and, if available, an electronic mail address at
    which you may be contacted;
 5. A statement that you have a good faith belief that use of the material in
    the manner complained of is not authorized by the copyright owner, its
    agent, or the law; and
 6. A statement that the information in your notification is accurate, and under
    penalty of perjury, that you are authorized to act on behalf of the owner of
    an exclusive right that is allegedly infringed.

Any notification by a copyright owner or a person authorized to act on its
behalf that fails to comply with the provisions above shall not be considered
sufficient notice and shall not be deemed to confer upon Juno actual knowledge
of facts or circumstances from which infringing material or acts are evident.

7.0 Software Licenses

 * Juno Software Licenses. Except as otherwise set forth in any third party end
   user license agreement provided with the Equipment, the following will govern
   your use of the Software.
     
     
   * Juno grants to you a personal, non-transferable, non-exclusive license to
     use the Software (in object code form only) as a part of the Juno Services
     subject to the terms and conditions of the Rules. The Software is licensed,
     not sold, to you by Juno and may be used only to connect to the Juno
     Services from locations that Juno may authorize.
     
     
   * You may copy and archive the Software, and you may distribute copies of the
     Software to third parties, provided that all such copies contain the same
     copyright notice and proprietary markings as are on the original Software;
     and provided further that you do not sell, transmit or otherwise dispose of
     any copy for compensation or as part of a commercial offer. Notwithstanding
     the foregoing, Juno may, at any time, and in its sole discretion, prohibit
     your distribution or your further distribution of the Software to third
     parties and require you to discontinue any such activity.
     
     
   * You may be required to install any updates, enhancements or upgrades to the
     Software provided by Juno, although Juno is not obligated to provide such
     updates, enhancements or upgrades. Such updates, enhancements or upgrades
     shall be deemed a part of the Software.
     
     
   * You agree not to translate, reverse engineer, reverse compile, disassemble
     or make derivative works from the Software. You agree not to modify the
     Software in any manner or form, or to use modified versions of the
     Software, including, without limitation, for the purpose of obtaining
     unauthorized access to the Juno Services or disabling features of the
     Software or Juno Services. Except as may be permitted by Juno, you agree
     not to access the Juno Services by any means other than through the
     interface that is provided by Juno or its partners for use in accessing the
     Juno Services.
     
     
   * The Software includes certain cryptographic software that may be subject to
     any applicable export controls, including the U.S. Export Administration
     Act. The Software may not be exported to any country or to any foreign
     entity or "foreign person" to the extent prohibited under applicable
     government regulations. By downloading or using the Software, you are
     acknowledging and agreeing to the foregoing limitations on your right to
     export or re-export the Software, and are also representing and warranting
     that you are neither on any applicable government's lists of export
     precluded parties nor otherwise ineligible to receive software containing
     cryptography that is subject to any applicable export controls.
     
     
   * You acknowledge and agree that (i) you are not acquiring the license
     granted hereunder on behalf of a government agency and (ii) the license
     granted hereunder is not being acquired pursuant to a government contract.
     
     
   * You acknowledge that Juno and/or its third party service providers or
     suppliers retain all title, rights (including, without limitation,
     intellectual property rights) and interest in the Software, except as
     expressly licensed in these Terms of Service or pursuant to an end user
     license agreement accompanying your Equipment. All rights in the content,
     information and materials accessed through use of the Software are the
     property of the applicable content owner and may be protected under
     intellectual property and other applicable laws. You agree that Juno's
     third party service providers or suppliers are direct and intended third
     party beneficiaries of these Terms of Service.
   
   
 * End User License Agreement. The end user license agreements that accompany
   your Equipment will govern the use of Software provided with such Equipment.
   By accepting these Terms of Service, you agree to accept the terms of those
   third party end user license agreements and to look solely to the provider(s)
   of such third party software to handle and resolve any problems or issues
   relating to the use or installation of any such third party software.

8.0 Dispute Resolution

This section describes what rights you and Juno possess if you and Juno have a
dispute.
 * Providing Notice of a Claim.
     
     
   * You and Juno agree to arbitrate all disputes and claims between us
     ("Disputes or Claims"). This agreement to arbitrate is intended to be
     broadly interpreted. It includes, but is not limited to:
       
       
     * Disputes or Claims related in any way to a Juno Service, Equipment, the
       Rules, billing, privacy, advertising, or Juno's communications with you;
       
       
     * Disputes or Claims arising out of or relating to any aspect of the
       relationship between us, whether based in contract, tort, statute, fraud,
       misrepresentation or any other legal theory;
       
       
     * Disputes or Claims that arose before your agreement to these Terms of
       Services or any prior agreement;
       
       
     * Disputes or Claims that are currently the subject of purported class
       action litigation in which you are not a member of a certified class; and
       
       
     * Disputes or Claims that may arise after the termination of your Juno
       Service.
     
     
   * A party who intends to seek arbitration must first send to the other, by
     certified mail, a written Notice of Dispute ("Notice"). Notice to Juno must
     be sent to Juno's customer service address at: Juno Dispute Resolution,
     United Online Inc., PO BOX 7064, Woodland Hills, CA 91365.
     
     
   * The Notice must include (a) the nature and basis of your Dispute or Claim;
     (b) identification or enclosure of all relevant documents and information;
     and (c) a description of the specific relief that you seek from Juno.
   
 * Providing Juno an Opportunity to Informally Resolve Your Dispute.
     
     
   * Before you may pursue or participate in any Dispute or Claim (or raise such
     Dispute or Claim as a defense) in small claims court or in arbitration
     against Juno, you must first send the Notice described above, and you must
     allow Juno a reasonable opportunity to resolve your Dispute or Claim.
     
     
   * After Juno receives your Notice, you and Juno agree to negotiate in good
     faith with each other to try to resolve your Dispute or Claim.
     
     
   * If you and Juno do not reach a resolution of your Dispute or Claim within
     thirty (30) days after Juno receives your written Notice, you may pursue
     your Dispute or Claim in arbitration or, solely to the extent specifically
     provided below, in small claims court.
   
 * Agreement to Participate in Binding Arbitration.
     
     
   * If you and Juno cannot reach an informal resolution to the Dispute or Claim
     within thirty (30) days after Juno's receipt of your Notice, you or Juno
     may commence an arbitration proceeding by sending an arbitration demand
     ("Arbitration Demand") to the following address: Juno Dispute Resolution,
     United Online Inc., PO BOX 7064, Woodland Hills, CA 91365. The parties
     agree to arbitrate any Dispute or Claim between the parties, except to the
     extent either party chooses to instead pursue the Dispute or Claim in small
     claims court as provided below.
     
     
   * Arbitration is more informal than a lawsuit in court. Arbitration uses a
     neutral arbitrator instead of a judge or jury, allows for more limited
     discovery than in court, and is subject to very limited review by courts.
     Arbitrators can award the same damages and relief that a court can award.
     
     
   * Except as otherwise provided herein, upon you or Juno filing an Arbitration
     Demand, Juno will pay all filing, administration, and arbitrator fees,
     unless your Dispute or Claim exceeds $75,000 (exclusive of any filing,
     administration, arbitrator, or attorneys' fees or other fees or expenses).
     If you initiate an arbitration in which you seek more than $75,000
     (exclusive of any filing, administration, arbitrator, or attorneys' fees or
     other fees or expenses) in damages, the American Arbitration Association's
     ("AAA") Commercial Arbitration Rules and the Supplementary Procedures for
     Consumer-Related Disputes (collectively, the "AAA Rules") will govern the
     payment of these fees.
     
     
   * The AAA Rules, as modified by these Terms of Service, will govern the
     arbitration. The AAA Rules are available online at www.adr.org, or by
     calling the AAA at 1-800-778-7879.
     
     
   * If your Dispute or Claim is for $10,000 or less (exclusive of any filing,
     administration, arbitrator, or attorneys' fees or other fees or expenses),
     Juno agrees that you may choose whether the arbitration will be conducted
     solely on the basis of documents submitted to the arbitrator, through a
     telephonic hearing, or by an in-person hearing under the AAA Rules. If your
     Dispute or Claim exceeds $10,000 (exclusive of any filing, administration,
     arbitrator, or attorneys' fees or other fees or expenses), the right to a
     hearing will be determined by the AAA Rules.
     
     
   * Unless Juno and you agree otherwise in writing, any arbitration hearings
     will take place in the county (or parish) in which your most recent billing
     address (as provided to Juno) is located.
     
     
   * One arbitrator, who is selected under the AAA Rules and who has expertise
     in consumer disputes in the wireless industry, will conduct the
     arbitration. If no arbitrator possessing such expertise is available, then
     the arbitration will be conducted by a single arbitrator who is selected by
     the mutual written approval of you and Juno. Except as allowed under
     applicable law and the AAA Rules, the decisions of the arbitrator will be
     binding and conclusive on all parties. Judgment upon any award of the
     arbitrator may be entered by any court of competent jurisdiction. This
     provision will be specifically enforceable in any court. THE ARBITRATOR
     MUST FOLLOW THESE TERMS OF SERVICE AND CAN AWARD THE SAME DAMAGES AND
     RELIEF AS A COURT (INCLUDING ATTORNEYS' FEES).
     
     
   * All issues are for the arbitrator to decide, except that issues relating to
     the scope and enforceability of the arbitration provision are for a court
     to decide.
     
     
   * Regardless of the manner in which the arbitration is conducted, the
     arbitrator shall issue a reasoned written decision sufficient to explain
     the essential findings and conclusions on which the award is based.
     
     
   * Except as otherwise provided herein, Juno will pay all filing,
     administration, and arbitrator fees for any arbitration initiated in
     accordance with the notice requirements above. If, however, the arbitrator
     finds that either the substance of your Dispute or Claim or the relief
     sought is frivolous or brought for an improper purpose (as measured by the
     standards set forth in Federal Rule of Civil Procedure 11(b)), then the
     payment of all such fees will be governed by the AAA Rules. Also, if you
     initiate an arbitration in which you seek more than $75,000 in damages, the
     payment of fees will be governed by the AAA Rules.
     
     
   * Juno may make a written settlement offer to you before the arbitrator
     issues an award. If, after the arbitrator finds in your favor on the merits
     of the claim, and the arbitrator issues you an award that is greater than
     Juno's written offer, Juno will: (a) pay you the greater of the amount of
     the award or $7,500 ("Alternative Payment"); and (b) pay your attorney, if
     you use an attorney, twice the amount of any reasonable attorneys' fees
     awarded by the arbitrator, and reimburse any expenses that your attorney
     reasonably accrues for investigating, preparing, and pursuing your
     arbitration claim ("Attorney Fee Premium"). The Attorney Fee Premium does
     not supplant any right you may have to reasonable attorneys' fees under
     applicable law. Thus, if you would be entitled to a greater amount under
     applicable law, the Attorney Fee Premium does not preclude the arbitrator
     from awarding you that amount. You may not, however, recover duplicative
     attorneys' fees or costs.
     
     
   * If Juno does not make a written settlement offer to you before the
     arbitrator issues an award, you and your attorney will be entitled to the
     Alternative Payment and the Attorney Fee Premium, respectively, if the
     arbitrator decides in your favor on the merits.
     
     
   * Juno agrees that it will not seek any award of attorneys' fees, even if it
     is entitled to such fees.
     
     
   * The arbitrator may make any determinations and resolve any Dispute or Claim
     as to the payment and reimbursement of fees, the Alternative Payment, or
     the Attorney Fee Premium at any time during the proceeding and within
     fourteen (14) days after the arbitrator's final ruling on the merits.
     
     
   * The arbitrator may award declaratory or injunctive relief only in favor of
     the individual party seeking relief and only to the extent necessary to
     provide relief warranted by that party's individual claim.
     
     
   * YOU AND JUNO AGREE THAT:
       
       
     * ANY DISPUTE RESOLUTION PROCEEDINGS WILL BE CONDUCTED ONLY ON AN
       INDIVIDUAL BASIS AND NOT IN A CLASS OR REPRESENTATIVE ACTION. NEITHER YOU
       NOR JUNO SHALL BE A MEMBER IN A CLASS, CONSOLIDATED, OR REPRESENTATIVE
       ACTION OR PROCEEDING, AND THE ARBITRATOR MAY AWARD RELIEF ONLY IN FAVOR
       OF THE INDIVIDUAL PARTY SEEKING RELIEF AND ONLY TO THE EXTENT NECESSARY
       TO PROVIDE RELIEF WARRANTED BY THAT PARTY'S INDIVIDUAL DISPUTE OR CLAIM.
       
       
     * UNLESS BOTH PARTIES AGREE OTHERWISE, THE ARBITRATOR MAY NOT CONSOLIDATE
       MORE THAN ONE PERSON'S DISPUTES OR CLAIMS, AND MAY NOT OTHERWISE PRESIDE
       OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING.
       
       
     * JUNO DOES NOT CONSENT TO CLASS ARBITRATION. ACCORDINGLY, IF A COURT
       REFUSES TO ENFORCE THE ABOVE PROVISIONS REGARDING CLASS OR REPRESENTATIVE
       ACTIONS, THEN THIS AGREEMENT TO ARBITRATE SHALL BE UNENFORCEABLE AS TO
       YOU. WHETHER A DISPUTE OR CLAIM PROCEEDS IN COURT OR IN ARBITRATION, YOU
       AND JUNO HEREBY WAIVE ANY RIGHT TO A JURY TRIAL.
     
     
   * This arbitration agreement covers any Dispute or Claim arising out of or
     relating to any aspect of the relationship between you and Juno, whether
     based in contract, tort, statute, fraud, misrepresentation or any other
     legal theory, even if the Dispute or Claim arises or may arise before or
     after the period(s) during which you are receiving Juno Services. For
     purposes of this arbitration provision, references to "Juno," "we," and
     "us" include Juno, Juno's Affiliates, and each such entity's respective the
     directors, officers, employees, shareholders, agents, suppliers, and
     assignees. The Rules evidence a transaction in interstate commerce, and the
     Federal Arbitration Act governs the interpretation and enforcement of this
     section.
     
     
   * You or Juno must bring any Dispute or Claim arising out of or related to
     the Rules, or the relationship between you and Juno, within two (2) years
     after the Dispute or Claim arises, or the Dispute or Claim will be
     permanently barred. To the extent the law applicable under the Governing
     Law section below makes this limitations period unenforceable with respect
     to any Dispute(s) or Claim(s), then the statutes of limitations of the
     state whose laws govern the Rules under the Governing Law section below
     shall apply.
     
     
   * Juno may make changes to this arbitration provision during the term of our
     services to you. You may reject any material changes by sending Juno
     written objection within thirty (30) days of the change to Juno Dispute
     Resolution, United Online, Inc., PO Box 7064, Woodland Hills, CA 91365,
     Attention Legal Department. By rejecting any future material change, you
     are agreeing to arbitrate in accordance with the language of this
     provision.
   
 * Small Claims Court. You may choose to pursue your Dispute or Claim in small
   claims court rather than by arbitration if your Dispute or Claim qualifies
   for small claims court in a location where jurisdiction and venue over you
   and Juno is proper.
   
   
 * Governing Law. The Rules, and any Dispute or Claim arising between you and
   Juno related in any way to the Rules, Juno Services, or Equipment, including
   but not limited to any Dispute or Claim over billing, service, privacy,
   advertising, or Juno's communications with you, whether based on contract,
   tort, statute, or common law, will be governed by the laws of the state in
   which your most recent billing address (as provided to Juno) is located,
   without regard to choice of law principles.

9.0 Miscellaneous

 * Liability Limitation. Juno shall not be liable for nonperformance or delay in
   performance caused by any reason, whether within or outside of its control.
   
   
 * Fair Access for Satellite Service. Juno's satellite Internet access service
   provider may assign a download threshold to each satellite Internet access
   service plan in order to limit the amount of data that may be continuously
   downloaded. The small percentage of subscribers who exceed this limit will
   experience a temporary reduction of speed in their satellite Internet access.
   
   
 * Subpoenas. Juno may be required to provide information about you to a third
   party. Except as prohibited by law, we will notify you if we plan to comply
   with a civil subpoena related to your Juno Service. You agree to hold us
   harmless for the release of your information in connection with a civil
   subpoena, including, but not limited to, any claims that you did not receive
   notice of the subpoena from Juno.
   
   
 * Electronic Agreements. Any registrations, agreements, and terms presented by
   Juno electronically have the same effect as one in writing and are legally
   enforceable as a signed writing.
   
   
 * Assignability. Juno may assign these Terms of Service at any time without
   notice to you. You may not assign these Terms of Service to any other person.
   
   
 * Entire Agreement. The Rules (as may be modified by updated Rules on the Juno
   Site) and your plan description together constitute the sole agreement
   between Juno and you respecting the subject matter hereof. To the extent that
   the Rules conflict with the provisions of any other agreement between you and
   Juno, then the Rules shall control, unless Juno has expressly stated or
   agreed otherwise in writing, and the conflicting provisions of the other
   agreement shall be deemed modified to the minimum extent necessary to be read
   consistently with the Rules. You acknowledge and agree that you have read the
   Rules and understand and accept their terms.
   
   
 * Severability. If any provision of the Rules is held to be unenforceable for
   any reason, such provision shall be reformed only to the extent necessary to
   comply with applicable laws, and the remainder shall remain in full force and
   effect.
   
   
 * No Waiver. Any failure of Juno to enforce any provision of the Rules shall
   not constitute a waiver of any rights under such provision or any other
   provision of the Rules.
   
   
 * Information for California Residents. Under California Civil Code Section
   1789.3, users that are residents of California are entitled to the following
   consumer rights information: the Complaint Assistance Unit of the Division of
   Consumer Services may be contacted in writing at 400 R Street, Suite 1080,
   Sacramento, CA 95814 or by telephone at (916) 445-1254.
   
   
 * For Quebec Residents Only. C'est á la demande expresse des parties que la
   présente convention a été rédigée en langue anglaise; the parties to these
   Terms of Service have specifically requested that it be drafted in the
   English language.
   
   
 * Interpretation. For the purposes of these Terms of Service, references to
   "including" shall mean "including, without limitation," unless such reference
   is already included.

10.0 How to Contact Juno

A list of ways to contact Juno is available at .













* More details and limitations More details and limitations
Price
Please note that, depending on the numbers you choose, your location, and your
calling plan, you may incur long distance or toll charges in excess of your
local service charges on your telephone bill. For a list of access numbers and
their locations, click here. To find out whether or not you will incur any
charges, and if so, the amounts of such charges, please contact your local
telephone company. Live telephone technical support is available for a fee of
$25 per incident. You are responsible for all telephone charges and any
technical support charges incurred even during any free or discounted periods.
You will be charged the applicable subscription fees unless you cancel your
service before the end of any free or discounted periods. To cancel your
service, please call 1-800-654-5866. Juno reserves the right to impose hourly
usage limitations. See Terms of Service for details. Service not available in
all areas. Unless otherwise indicated, all prices are in United States dollars.
Not all viruses can be detected or cleaned. As described in the terms of
service, you are responsible for any damages caused by your decision to download
email or attachments.

Surf up to 5x Faster
**Juno Turbo Accelerated Dial-Up accelerates certain web page text and graphics
when compared to standard dial-up internet service. Actual results may vary.
Some web pages such as secure or encrypted web pages will not be accelerated.
Juno Turbo Accelerated Dial-Up is not a broadband service and actual data
transmission rates are not faster than standard dial-up internet service. Juno
Turbo Accelerated Dial-Up may not be compatible with proxy based software
services such as content filters or firewalls. Available only for Windows.

Spam/Virus Protection
Not all viruses can be detected or cleaned. As described in the terms of
service, you are responsible for any damages caused by your decision to download
email or attachments.

Live Technical Support
Free live technical phone support available only for first-time connection
during first thirty days after registration. After your first connection or
first 30 days, a charge of $25 per incident will apply. You must provide a valid
credit card at the time of your call and all fees incurred will be charged to
the card provided. You must be at least 18 years old to call. Juno Turbo only
available for Windows. All offers, features and pricing subject to change.

Standard Cost per Month
References to AOL®, EarthLink, and MSN pricing and savings amounts based on U.S.
standard monthly rates for standard versions of service as of 10/15/2009.
Competitors may offer prepaid packages that may reduce the amount of savings.
AOL®, EarthLink and MSN are trademarks of their respective owners.

Email Storage
EarthLink provides 100MB for each of 8 email addresses/accounts.
MSN provides 10 GB for the first email address/account, and 5GB for each of 10
additional email addresses/accounts.

Norton AntiVirus Online
© 2012 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo,
and Norton are trademarks or registered trademarks of Symantec Corporation or
its affiliates in the U.S. and other countries. Microsoft, Internet Explorer,
Windows, and Windows Vista are trademarks of Microsoft Corporation, registered
in the United States and other countries. Other names may be trademarks of their
respective owners.



Privacy Policy   |   Your Privacy Rights   |   Terms of Service

© 1995-2021 Juno Online Services, Inc. Juno is a registered trademark, and the
Juno logo is a trademark of Juno Online Services, Inc.

_flowId=signup-flow&asessionid=B6D7ACD523B7AC882D56076D506341B1|86400|1520591076&