<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML id="htmltag"> <HEAD> <title>LifeLock - Enrollment</title> <link href="/common/style/basePrintStyle.css" rel="stylesheet" type="text/css" media="print"> <link href="/common/style/forms.css" rel="stylesheet" type="text/css" media="screen"> <!--[if IE]><link rel="stylesheet" type="text/css" href="/common/style/iehacks.css"><![endif]--> <!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="/common/style/iehacks6Style.css"><![endif]--> <link rel="SHORTCUT ICON" href="favicon.ico"> <meta http-equiv="imagetoolbar" content="no"> <meta http-equiv="imagetoolbar" content="false"> <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> <meta content="C#" name="CODE_LANGUAGE"> <meta content="JavaScript" name="vs_defaultClientScript"> <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema"> <link rel="stylesheet" href="common/style/lightbox.css" type="text/css"> <script type="text/javascript"> window.onerror = function (sMessage, sURL, sLine){ //alert("An error occured:\n" + sMessage + "\nURL:" + sURL + "\nLine Number:" + sLine); return true; } document.onkeydown = function () { if((event.which && event.which == 13) || (event.keyCode && event.keyCode == 13)){return false;} } var controlID1 = "enroll1_"; var controlID2 = "enroll1:"; //get browser var isIE = navigator.userAgent.indexOf("MSIE") > -1; var version = 0; if (navigator.appVersion.indexOf("MSIE")!=-1) { temp=navigator.appVersion.split("MSIE"); version=parseFloat(temp[1]); } //var isFF = navigator.userAgent.indexOf("FireFox") > -1; //var isSF = navigator.userAgent.indexOf("Safari") > -1; //var isOP = navigator.userAgent.indexOf("Opera") > -1; //preload images var imgs = new Array(); var img_url = new Array(); img_url[0] = "/common/img/lifelockmodalprocessing.gif"; img_url[1] = "/common/img/lifeLockModalLogo.gif"; try { if(document.images) { for(var i = 0; i < img_url.length; i ++) { var img = new Image(); img.src = img_url[i]; imgs[i] = img; } } } catch(ex) { } </script> <script type="text/javascript"> var prefix1 = controlID1; var prefix2 = controlID2; function getElementByBaseId(oBase) { try { var oControl = document.getElementById(prefix1 + oBase); if(oControl != null) { return oControl; } else { var oControl2 = document.getElementById(prefix2 + oBase); return oControl2; } } catch(oError) { return null; } } function createXMLHttp() { if(typeof XMLHttpRequest != "undefined") { return new XMLHttpRequest(); } else if(window.ActiveXObject) { var aVersions = [ "MSXML2.XMLHttp.5.0", "MSXML2.XMLHttp.4.0","MSXML2.XMLHttp.3.0", "MSXML2.XMLHttp", "Microsoft.XXMLHttp"]; for (var i = 0; i < aVersions.length; i ++) { try { var oXmlHttp = new ActiveXObject(aVersions[i]); return oXmlHttp; } catch(oError) { } } } throw new Error("XmlHttp object could not be created."); } function parseDisplayResponse(oResponse, oType) { //parse var oDisplay = oResponse.substring(oResponse.indexOf("<span id=\"lblInfo\">") + 19); oDisplay = "<span>" + oDisplay.substring(0, oDisplay.indexOf("<!-- end -->")); var oPackage = oResponse.substring(oResponse.indexOf("<span id=\"lblPackage\">") + 22); oPackage = "<span>" + oPackage.substring(0, oPackage.indexOf("<!-- end -->")); //display if(oType == "PlanChange") { var lbl1 = getElementByBaseId("lblPlanInformation"); if(lbl1 != null) { lbl1.innerHTML = oDisplay; } else { } requestInfo("tot=get", "FindTotal"); } else if(oType == "FindTotal") { var lbl2 = getElementByBaseId("lblTotalLine"); if(lbl2 != null) { lbl2.innerHTML = oDisplay; } else { } var lbl3 = getElementByBaseId("lblPackagePrice"); if(lbl3 != null) { lbl3.innerHTML = oPackage; } } else { var lbl = getElementByBaseId("lblAdditionalMembersAdded"); if(lbl != null) { lbl.innerHTML = oDisplay; } requestInfo("tot=get", "FindTotal"); } } function requestInfo(oQuery, oType) { var oXmlHttp = createXMLHttp(); var strPage = "getPlanData.aspx?"; if(oType == "AddMember") { strPage = "addDelMember.aspx?"; } if(oType == "DelMember") { strPage = "addDelMember.aspx?"; } oXmlHttp.open("GET", strPage + oQuery, true); //alert(strPage + oQuery); oXmlHttp.onreadystatechange = function () { try { if(oXmlHttp.readyState == 4) { if(oXmlHttp.status == 200) { parseDisplayResponse(oXmlHttp.responseText, oType); } } } catch(oError) { //alert(oError); } } oXmlHttp.setRequestHeader("Cache-Control", "no-cache"); oXmlHttp.send(null); } function SelectPlan(id) { var lblTot = getElementByBaseId("lblTotalLine"); if(lblTot != null) { lblTot.innerHTML = "Calculating Total ...."; } var lblPackage = getElementByBaseId("lblPackagePrice"); if(lblPackage != null) { lblPackage.innerHTML = "Calculating Total ...."; } requestInfo("id=" + id, "PlanChange"); } function AddMember() { var ddlRel = getElementByBaseId("ddlRelationship"); var txtFN = getElementByBaseId("amFName"); var txtMN = getElementByBaseId("amMName"); var txtLN = getElementByBaseId("amLName"); var ddlSuf = getElementByBaseId("amSuffix"); var lbl = getElementByBaseId("lblAdditionalMembersAdded"); var error = document.getElementById("sAdditionalMemberError"); if(ddlRel != null && txtFN != null && txtMN != null && txtLN != null && ddlSuf != null && lbl != null) { if(error != null) { if(ddlRel.options[ddlRel.selectedIndex].value == "") { error.innerHTML = '<span class="amTableError"><font color="red">Please select a relationship.</font></span>'; ddlRel.focus(); return; } if(txtFN.value == "") { error.innerHTML = '<span class="amTableError"><font color="red">Please enter a First Name.</font></span>'; txtFN.focus(); return; } if(txtLN.value == "") { error.innerHTML = '<span class="amTableError"><font color="red">Please enter a Last Name.</font></span>'; txtLN.focus(); return; } if(!validateName(txtFN)) { error.innerHTML = '<span class="amTableError"><font color="red">First Name is invalid.</font></span>'; txtFN.focus(); return; } if(!validateName(txtLN)) { error.innerHTML = '<span class="amTableError"><font color="red">Last Name is invalid.</font></span>'; txtLN.focus(); return; } if(txtMN.value != "") { if(!validateName(txtMN)) { error.innerHTML = '<span class="amTableError"><font color="red">Middle Name is invalid.</font></span>'; txtMN.focus(); return; } } } var rel = ddlRel.options[ddlRel.selectedIndex].value; if(lbl != null) { lbl.innerHTML = "Attempting to add member..."; } var lblTot = getElementByBaseId("lblTotalLine"); if(lblTot != null) { lblTot.innerHTML = "Calculating Total ...."; } var lblPackage = getElementByBaseId("lblPackagePrice"); if(lblPackage != null) { lblPackage.innerHTML = "Calculating Total ...."; } requestInfo("Relationship=" + rel + "&FName=" + txtFN.value + "&MName=" + txtMN.value + "&LName=" + txtLN.value + "&Suffix=" + ddlSuf.value + "&type=add", "AddMember"); try { txtFN.value = ""; txtMN.value = ""; txtLN.value = ""; ddlSuf.value = ""; ddlRel.selectedIndex = 0; error.innerHTML = ""; } catch(ex) { } } } function validateName(control) { try { var oRE = new RegExp("^[a-zA-Z\\-,'\\.]+$"); return oRE.test(control.value); } catch(e) { } } function stripNonNumeric(control) { try { control.value = control.value.replace(/[^0-9]/g, ''); } catch(e) { } } function DelMember(index) { var lblTot = getElementByBaseId("lblTotalLine"); if(lblTot != null) { lblTot.innerHTML = "Calculating Total..."; } var lblPackage = getElementByBaseId("lblPackagePrice"); if(lblPackage != null) { lblPackage.innerHTML = "Calculating Total ...."; } requestInfo("type=del&index=" + index, "DelMember"); } //modal window functions function prepareIE(height, overflow) { try { if(height == "auto") toggleSelects(true); else toggleSelects(false); var bod = document.getElementsByTagName('body')[0]; bod.style.height = height; bod.style.overflow = overflow; var htm = document.getElementsByTagName('html')[0]; htm.style.height = height; htm.style.overflow = overflow; } catch(ex) { } } function getVersion() { var aVersion = navigator.appVersion.split(";"); for(var i = 0; i < aVersion.length; i++) { if(aVersion[i].indexOf("MSIE") > -1) { return aVersion[i].replace("MSIE", ""); } } return "0"; } function ProcessOrder() { prepareIE('100%', 'hidden'); //don't disable the button here because it will prevent it from posting back!! var dFull = document.getElementById("overlay"); var dSub = document.getElementById("lightbox"); if(dFull != null) dFull.style.display = "block"; if(dSub != null) { dSub.style.display = "block"; if(isIE) { //older versions of IE need help with images var br = document.createElement('br'); var divLogo = document.createElement('div'); divLogo.appendChild(imgs[1]); var divProcess = document.createElement('div'); divProcess.appendChild(imgs[0]); dSub.innerHTML = "<div class='modalmessge'>Your enrollment is being processed. This may take a few minutes. Thank you for your patience.</div>"; dSub.innerHTML = dSub.innerHTML + "<br><br><br>"; dSub.appendChild(divProcess); dSub.innerHTML = dSub.innerHTML + "<br><br>"; dSub.appendChild(divLogo); } else { dSub.innerHTML = "<div class='modalmessge'>Your enrollment is being processed. This may take a few minutes. Thank you for your patience.</div><div class='modalprocess'><img src='/common/img/lifelockmodalprocessing.gif' alt='loading'></div><br><div class='modallogo'><img src='/common/img/lifelockmodallogo.gif' alt='lifelock' /></div>"; } } return true; } function CloseScreenDivs() { prepareIE('auto', 'auto'); var dFull = document.getElementById("overlay"); var dSub = document.getElementById("lightbox"); if(dFull != null) dFull.style.display = "none"; if(dSub != null) { dSub.style.display = "none"; dSub.innerHTML = ""; } } //functions to show modal on error if required function checkRegex(strValue, strRegex) { var bGood = false; try { var oRE = new RegExp(strRegex); if(oRE.test(strValue)) { bGood = true; } } catch(e) { return true; } return bGood; } function checkCompare(strValue, strCompare, strOperator) { var bGood = false; switch(strOperator) { case "!=": if(strValue != strCompare) bGood = true; else bGood = false; break case "=": if(strValue == strCompare) bGood = true; else bGood = false; break default: bGood = false; break } return bGood; } function showError(strID, bReq, strReqError, strRegex, strRegexError, strCompare, strOperator, strCompareError) { var cValidate = getElementByBaseId(strID); if(cValidate != null) { var strValue = ""; switch(cValidate.type) { case "text": strValue = cValidate.value; break case "select-one": strValue = cValidate.options[cValidate.selectedIndex].value; break default: strValue = cValidate.value; break } if(bReq) { if(strValue == "") { //ERROR show modal showModal(strReqError); return; } } if(strRegex != "") { if(!checkRegex(strValue, strRegex)) { //ERROR show modal showModal(strRegexError); return; } } if(strCompare != "" && strOperator != "") { if(!checkCompare(strValue, strCompare, strOperator)) { //ERROR show modal showModal(strCompareError); return; } } } } function showModal(strDisplay) { prepareIE('100%', 'hidden'); //don't disable the button here because it will prevent it from posting back!! var dFull = document.getElementById("overlay"); var dSub = document.getElementById("lightbox"); if(dFull != null) dFull.style.display = "block"; if(dSub != null) { dSub.style.display = "block"; dSub.innerHTML = "<div class=\"errorText\">" + strDisplay + "</div><br><div class='modalbackground'><img src='/common/img/modalerrorbackground.jpg' alt='lifelock' /></div>"; dSub.innerHTML = dSub.innerHTML + '<br><div class="errorClose"><input type="button" onclick="CloseScreenDivs();" value="Try Again"></div>'; } } function showModalCCState(strDisplay, strID) { prepareIE('100%', 'hidden'); //don't disable the button here because it will prevent it from posting back!! var dFull = document.getElementById("overlay"); var dSub = document.getElementById("lightbox"); if(dFull != null) dFull.style.display = "block"; if(dSub != null) { dSub.style.display = "block"; dSub.innerHTML = "<div class=\"errorText\">" + strDisplay + "</div><br><div class='modalbackground'><img src='/common/img/modalerrorbackground.jpg' alt='lifelock' /></div>"; dSub.innerHTML = dSub.innerHTML + '<br><div class="errorClose"><input type="button" onclick="ccStateAgree();" value="I Agree"> <input type="button" onclick="ccStateDisagree();" value="I Do Not Agree"></div>'; } } var ddlStateID = "ddlCCState"; function checkCCState(strID) { ddlStateID = strID; var ddl = document.getElementById(strID); if(ddl != null) { if(ddl.options[ddl.selectedIndex].value == "OK") { showModalCCState('Some text here. Do you agreee?', strID); } } } function ccStateAgree() { CloseScreenDivs(); var ddl = document.getElementById(ddlStateID); if(ddl != null) { ddl.focus(); } } function ccStateDisagree() { CloseScreenDivs(); var ddl = document.getElementById(ddlStateID); if(ddl != null) { ddl.selectedIndex = 0; ddl.focus(); } } var x; var y; var IE = document.all?true:false if (!IE) document.captureEvents(Event.CLICK) // Set-up to use getMouseXY function onMouseMove function truebody(){ return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } var offsetfrommouse=[10,0]; var currentimageheight = 0; document.onclick = getMouseXY; function getMouseXY(e) { var xcoord=offsetfrommouse[0] var ycoord=offsetfrommouse[1] var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15 var docheight=document.all? Math.min(truebody().scrollHeight, truebody().clientHeight) : Math.min(window.innerHeight) if (typeof e != "undefined"){ if (docwidth - e.pageX < 380){ xcoord = e.pageX - xcoord - 400; // Move to the left side of the cursor } else { xcoord += e.pageX; } if (docheight - e.pageY < (currentimageheight + 110)){ ycoord += e.pageY - Math.max(0,(110 + currentimageheight + e.pageY - docheight - truebody().scrollTop)); } else { ycoord += e.pageY; } } else if (typeof window.event != "undefined"){ if (docwidth - event.clientX < 380){ xcoord = event.clientX + truebody().scrollLeft - xcoord - 400; // Move to the left side of the cursor } else { xcoord += truebody().scrollLeft+event.clientX } if (docheight - event.clientY < (currentimageheight + 110)){ ycoord += event.clientY + truebody().scrollTop - Math.max(0,(110 + currentimageheight + event.clientY - docheight)); } else { ycoord += truebody().scrollTop + event.clientY; } } if(ycoord < 0) { ycoord = ycoord*-1; } x = xcoord; y = ycoord; return true; } function DisplayHelp(divID) { toggleSelects(false); var divHelp = document.getElementById(divID); if(divHelp) { divHelp.style.display = "block"; //alert(divHelp.offsetHeight); divHelp.style.top = (y - (divHelp.offsetHeight* .75)) + "px"; divHelp.style.left = x + "px"; } } function CloseHelp(divID) { toggleSelects(true); var divHelp = document.getElementById(divID); if(divHelp) { divHelp.style.display = "none"; } } function toggleSelects(bOn) { if(isIE && (version < 7)) { var aSelects = document.getElementsByTagName("select"); for(var i = 0; i < aSelects.length; i++) { if(bOn) aSelects[i].style.visibility = "visible"; else aSelects[i].style.visibility = "hidden"; } } } function checkCVV() { var ddlType = getElementByBaseId("ddlCCType"); var txtCvv = getElementByBaseId("txtCCSecurityCode"); var iMax = 4; if(ddlType != null && txtCvv != null) { //strip non-numeric txtCvv.value = txtCvv.value.replace(/[^0-9]/g, ''); if(ddlType.options[ddlType.selectedIndex].value == "Amex") { iMax = 4; //alert(iMax); if(txtCvv.value.length > iMax) txtCvv.value = txtCvv.value.substring(0, iMax); } else { iMax = 3; //alert(iMax); if(txtCvv.value.length > iMax) txtCvv.value = txtCvv.value.substring(0, iMax); } } } </script> </HEAD> <body id="bodytag" style="auto:auto;"> <form name="_ctl3" method="post" action="enrollmentform.aspx" language="javascript" onsubmit="if (!ValidatorOnSubmit()) return false;" id="_ctl3"> <input type="hidden" name="__VIEWSTATE" value="dDw5MTI0NjA5Njk7dDw7bDxpPDM+Oz47bDx0PHA8bDxzdHlsZTs+O2w8YXV0bzphdXRvXDs7Pj47bDxpPDE+Oz47bDx0PDtsPGk8Mz47aTw3PjtpPDk+Oz47bDx0PDtsPGk8MTE+O2k8MTM+O2k8MTU+O2k8Njk+O2k8NzE+O2k8OTM+O2k8MTE1PjtpPDEyNT47aTwxMjc+Oz47bDx0PHA8cDxsPFRleHQ7PjtsPFxlOz4+Oz47Oz47dDxwPHA8bDxUZXh0Oz47bDxBcHBseTs+Pjs+Ozs+O3Q8cDxwPGw8VGV4dDs+O2w8Jm5ic3BcOzs+Pjs+Ozs+O3Q8O2w8aTw1PjtpPDc+Oz47bDx0PHA8cDxsPFRleHQ7PjtsPFw8dGFibGVcPlw8L3RhYmxlXD47Pj47Pjs7Pjt0PDtsPGk8MD47PjtsPHQ8O2w8aTwwPjs+O2w8dDw7bDxpPDA+Oz47bDx0PHQ8O3Q8aTw0PjtAPFBsZWFzZSBzZWxlY3Q7U3BvdXNlO090aGVyIEFkdWx0O01pbm9yIChVbmRlciAxNik7PjtAPFxlO1Nwb3VzZS5BZHVsdHM7T3RoZXIgQWR1bHQuQWR1bHRzO01pbm9yIChVbmRlciAxNikuS2lkczs+Pjs+Ozs+Oz4+Oz4+Oz4+Oz4+O3Q8cDxwPGw8VGV4dDs+O2w8WW91ciBwYWNrYWdlIHByaWNlIGlzIFw8Ylw+JDExMC4wMFw8L2JcPiBwZXIgeWVhciBhbmQgZXZlcnkgeWVhciB0aGVyZWFmdGVyLjs+Pjs+Ozs+O3Q8dDw7dDxpPDYyPjtAPC0tO0FBO0FFO0FMO0FLO0FQO0FSO0FTO0FaO0NBO0NPO0NUO0RDO0RFO0ZMO0dBO0dVO0hJO0lEO0lMO0lOO0lBO0tTO0tZO0xBO01FO01EO01BO01IO01JO01OO01PO01QO01TO01UO05FO05WO05IO05KO05NO05ZO05DO05EO09IO09LO09SO1BBO1BSO1BXO1JJO1NDO1NEO1ROO1RYO1VNO1VUO1ZUO1ZBO1dBO1dWO1dJO1dZOz47QDxcZTtBQTtBRTtBTDtBSztBUDtBUjtBUztBWjtDQTtDTztDVDtEQztERTtGTDtHQTtHVTtISTtJRDtJTDtJTjtJQTtLUztLWTtMQTtNRTtNRDtNQTtNSDtNSTtNTjtNTztNUDtNUztNVDtORTtOVjtOSDtOSjtOTTtOWTtOQztORDtPSDtPSztPUjtQQTtQUjtQVztSSTtTQztTRDtUTjtUWDtVTTtVVDtWVDtWQTtXQTtXVjtXSTtXWTs+Pjs+Ozs+O3Q8O2w8aTwxMT47aTwyNT47aTwyOT47aTwzOT47PjtsPHQ8dDxwPDtwPGw8b25jaGFuZ2U7PjtsPGphdmFzY3JpcHQ6Y2hlY2tDVlYoKVw7Oz4+Pjs7Pjs7Pjt0PHA8O3A8bDxldmFsdWF0aW9uZnVuY3Rpb247PjtsPFJDVmFsaWRhdGVDcmVkaXRDYXJkTnVtYmVyOz4+Pjs7Pjt0PHQ8O3Q8aTwxMT47QDxcZTsyMDA4OzIwMDk7MjAxMDsyMDExOzIwMTI7MjAxMzsyMDE0OzIwMTU7MjAxNjsyMDE3Oz47QDxcZTsyMDA4OzIwMDk7MjAxMDsyMDExOzIwMTI7MjAxMzsyMDE0OzIwMTU7MjAxNjsyMDE3Oz4+Oz47Oz47dDxwPDtwPGw8b25rZXl1cDtvbmtleWRvd247PjtsPGphdmFzY3JpcHQ6Y2hlY2tDVlYoKVw7O2phdmFzY3JpcHQ6Y2hlY2tDVlYoKVw7Oz4+Pjs7Pjs+Pjt0PHA8cDxsPFRleHQ7PjtsPFBsZWFzZSBvbmx5IGNsaWNrICdDaGFyZ2UgbXkgY3JlZGl0IGNhcmQgZm9yIExpZmVMb2NrJyBvbmNlLiBZb3VyIGNyZWRpdCBjYXJkIHdpbGwgYmUgY2hhcmdlZCBhIHRvdGFsIG9mICQxMTAuMDAgb24gMi8yNS8yMDA4Ljs+Pjs+Ozs+O3Q8cDxwPGw8VGV4dDs+O2w8Q2hhcmdlIG15IGNyZWRpdCBjYXJkIGZvciBMaWZlTG9jazs+PjtwPGw8b25jbGljazs+O2w8amF2YXNjcmlwdDpQcm9jZXNzT3JkZXIoKVw7Oz4+Pjs7Pjs+Pjt0PHA8bDxzdHlsZTs+O2w8ZGlzcGxheTpub25lXDs7Pj47Oz47dDxwPGw8c3R5bGU7aW5uZXJodG1sOz47bDxkaXNwbGF5Om5vbmVcOztcZTs+Pjs7Pjs+Pjs+Pjs+PjtsPGVucm9sbDE6Y2tUZXJtc0FuZENvbmRpdGlvbnM7Pj51t/fuo2JnYi6iPfar5ERSQcig3w==" /> <script language="javascript" type="text/javascript" src="/aspnet_client/system_web/1_1_4322/WebUIValidation.js"></script> <script> var RC_allowAmericanExpress = true; var RC_allowBankcard = true; var RC_allowCarteBlanche = false; var RC_allowDelta = true; var RC_allowDiscover = true; var RC_allowEnRoute = false; var RC_allowJCB = false; var RC_allowMasterCard = true; var RC_allowSwitch = false; </script> <script> var RC_CCNumber; function RCValidateCreditCardNumber(val) { RC_CCNumber = ValidatorTrim(ValidatorGetValue(val.controltovalidate)).replace(/\D/g,""); if (RC_IsCCValid()) return RC_ValidateCCNumber(); else return false; } function RC_ValidateCCNumber() { if(RC_IsAmericanExpress()) return RC_allowAmericanExpress; if(RC_IsBankcard()) return RC_allowBankcard; if(RC_IsCarteBlanche()) return RC_allowCarteBlanche; if(RC_IsDelta()) return RC_allowDelta; if(RC_IsDiscover()) return RC_allowDiscover; if(RC_IsEnRote()) return RC_allowEnRoute; if(RC_IsJCB()) return RC_allowJCB; if(RC_IsMasterCard()) return RC_allowMasterCard; if(RC_IsSwitch()) return RC_allowSwitch; return false; } function RC_IsAmericanExpress() { if(RC_CCNumber.length != 15) return false; var iPrefix = parseInt(RC_CCNumber.substring(0,2)); if (iPrefix == 34 || iPrefix == 37) return true; return false; } function RC_IsBankcard() { if(RC_CCNumber.length != 16) return false; if (parseInt(RC_CCNumber.substring(0,2)) == 56) return true; return false; } function RC_IsCarteBlanche() { if(RC_CCNumber.length != 14) return false; var iPrefix = parseInt(RC_CCNumber.substring(0,3)); if (iPrefix > 299 || iPrefix < 306) return true; var iPrefix = parseInt(RC_CCNumber.substring(0,2)); if (iPrefix == 36 || iPrefix == 38) return true; return false; } function RC_IsDelta() { if(RC_CCNumber.length != 16 && RC_CCNumber.length != 13) return false; if (parseInt(RC_CCNumber.substring(0,1)) == 4) return true; return false; } function RC_IsDiscover() { if(RC_CCNumber.length != 16) return false; if (parseInt(RC_CCNumber.substring(0,4)) == 6011) return true; return false; } function RC_IsEnRote() { if(RC_CCNumber.length != 15) return false; var iPrefix = parseInt(RC_CCNumber.substring(0,4)); if (iPrefix == 2014 || iPrefix == 2149) return true; return false; } function RC_IsJCB16() { if(RC_CCNumber.length != 16) return false; if (parseInt(RC_CCNumber.substring(0,1)) == 3) return true; return false; } function RC_IsJCB15() { if(RC_CCNumber.length != 15) return false; var iPrefix = parseInt(RC_CCNumber.substring(0,4)); if (iPrefix == 2131 || iPrefix == 1800) return true; return false; } function RC_IsJCB() { return RC_IsJCB16() || RC_IsJCB15(); } function RC_IsMasterCard() { if(RC_CCNumber.length != 16) return false; var iPrefix = parseInt(RC_CCNumber.substring(0,2)); if (iPrefix > 50 && iPrefix < 56) return true; return false; } function RC_IsSwitch() { if(RC_CCNumber.length == 16 || RC_CCNumber.length == 18 || RC_CCNumber.length == 19) return true; return false; } function RC_IsNumberValid() { if (RC_CCNumber.length < 13) return false; var iCounter = RC_CCNumber.length; var iSum = 0; var iOddValue = 0; while(iCounter > 1) { iSum += parseInt(RC_CCNumber.substring(iCounter - 1, iCounter)); iOddValue = parseInt(RC_CCNumber.substring(iCounter - 2, iCounter - 1)) * 2; iSum += iOddValue % 10 + parseInt(iOddValue / 10); iCounter -= 2; } if(iCounter == 1) iSum += parseInt(RC_CCNumber.substring(0,1)); return iSum%10 == 0; } function RC_IsCCValid() { if(RC_IsEnRote()) return true; if(RC_IsNumberValid() && (RC_IsDelta() || RC_IsAmericanExpress() || RC_IsDiscover() || RC_IsMasterCard() || RC_IsJCB() || RC_IsSwitch() || RC_IsBankcard() || RC_IsCarteBlanche())) return true; return false; } </script> <div id="bodyId"> <div id="siteContainer"> <div id="headerContainer"> <div id="header"> <div id="logoContainer"> <div id="logo"> <a href="http://www.lifelock.com"><img src="Common/Img/r_102907_img/logo.gif" alt="LifeLock" width="224" height="83" border="0"></a> </div> <!-- Close logo --> <div id="printLogo"> <img src="Common/Img/logoBW.jpg" alt="LifeLock"> </div><!-- Close printLogo --> </div><!-- Close logoContainer --> <div id="infoContainer"> <a href="http://www.lifelock.com/support"><img src="common/Img/memberSupport.gif" alt="member support" /></a> <a href="http://www.lifelock.com/about-us/about-lifelock/contact-us"><img src="common/Img/contactUs.gif" alt="contact us" /></a> <h1>1-800-LifeLock</h1> <h2><span id="promoCode"></span><span id="phoneNumber">1-800-543-3562</span></h2> </div> <div class="clearBoth"></div> </div><!-- Close header --> </div><!-- Close headerContainer --> <div id="navContainer"> <div id="navMenu"> <div id="topNav1"> <ul> <li><a href="http://www.lifelock.com/">Welcome</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/lifelock-for-people">How LifeLock Works</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/our-guarantee">$1 Million Service Guarantee</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us">About Us</a></li> </ul> </div> <div id="topNav2"> <ul><li><a href="https://secure.lifelock.com/enrollmentform.aspx">Enroll Now</a></li></ul> </div> <div id="searchContainer"> <input type="text" id="search" name="search" class="searchField" onkeydown="javascript:SearchEnter();" onkeypress="javascript:SearchEnter();"/> <img src="/common/Img/search_btn.gif" onclick="runSearch();" /> <script> function runSearch() { var search = ""; var temp = document.getElementById('search'); if(temp != null){search = temp.value;} window.location = "http://www.lifelock.com/search-results.aspx?search=" + search;} function SearchEnter(){ var isNetscape = (window.sidebar); var keyCode = isNetscape ? keyStroke.which : event.keyCode; if(keyCode==13) { document.getElementById('_ctl3').method = 'post'; document.getElementById('_ctl3').action = 'http://lifelock.com/search-results.aspx';} } </script> </div><!-- Close searchContainer --> <div class="clearBoth"></div> </div><!-- Close navMenu --> </div><!-- Close navContainer --> <div id="main"> <div id="fullMaster"> <script type="text/javascript" src="/common/script/usairvalidate.js"></script> <SPAN class="pageTitle"> <H1>Enrollment</H1> </SPAN> <div id="enroll1_vsSummary" class="errorSummary" headertext="There was an error completing your application. Please correct the error in the form below. If you have questions or any problems, please call us at 877 LIFELOCK (543 3562). We are open 24 hours a day, seven days a week." style="color:Black;display:none;"> </div> <P>Thank you for your decision to enroll with LifeLock. It will take just a few moments to collect what we need to set your locks. Once you complete the process, your alerts will be set and our guarantee will be in effect.</P> <DIV id="planInfoContainer"> <H2 class="titleBar">Plan Information</H2> <DIV class="planInfoFrame"> <P>Select the LifeLock protection plan that’s best for you. We have pre-selected the plan that's the best deal.</P> <P> <span id="enroll1_lblPlanInformation"><table border="0"> <tr class="tableHead"> <td class="tableCol Selected borderRight borderLeft">Annual Plan</td><td class="tableCol borderRight borderLeft">Monthly Plan</td> </tr><tr> <td class="tableCol Selected borderLeft borderRight"><span class="priceModified">$110.00</span><span class="MemberTitle"> per adult</span><span class="priceSaved">You save $10.00!</span></td><td class="tableCol borderLeft borderRight"><span class="priceModified">$10.00</span><span class="MemberTitle"> per adult</span></td> </tr><tr> <td class="tableCol Selected borderLeft borderRight"><span class="priceModified">$25.00</span><span class="MemberTitle"> per kid</span><span class="priceSaved">You save $5.00!</span></td><td class="tableCol borderLeft borderRight"><span class="priceModified">$2.50</span><span class="MemberTitle"> per kid</span></td> </tr><tr class="tableFoot"> <td class="Selected"><INPUT onclick="javascript:SelectPlan('12:WEBCOMP');" type="radio" id="rbPlanSelect" checked="true"><br/>Your Current Plan</td><td><INPUT onclick="javascript:SelectPlan('11:WEBCOMP');" id="rbPlanSelect" type="radio"><br/>Choose Monthly Plan</td> </tr> </table></span></P> <P> If you have a promotion code, please enter it here: <input name="enroll1:txtPromotionCode" type="text" id="enroll1_txtPromotionCode" /> <input type="submit" name="enroll1:btnPromotion" value="Apply" id="enroll1_btnPromotion" /></P> </DIV> </DIV> <!--close planInfoContainer--> <P> <span id="enroll1_lblPromotionContent"> </span></P> <H2>Tell us about you:</H2> <!--<span class="formLabel">Prefix: </span> <select name="enroll1:ddlPrefix" id="enroll1_ddlPrefix"> <option value=""></option> <option value="Mr.">Mr.</option> <option value="Ms.">Ms.</option> <option value="Miss">Miss</option> <option value="Mrs.">Mrs.</option> <option value="Dr.">Dr.</option> </select>--><SPAN class="formLabel">First Name: <SPAN class="required">*</SPAN></SPAN> <input name="enroll1:txtFName" type="text" maxlength="20" id="enroll1_txtFName" /> <span id="enroll1_rfvFName" class="validationError" controltovalidate="enroll1_txtFName" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your first name.</span> <span id="enroll1_regexFirstName" class="validationError" controltovalidate="enroll1_txtFName" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z\-,'\.\s]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The First Name you entered is invalid.</span><BR> <SPAN class="formLabel">Middle Name: </SPAN> <input name="enroll1:txtMName" type="text" maxlength="20" id="enroll1_txtMName" /> <span id="enroll1_RegularExpressionValidator1" class="validationError" controltovalidate="enroll1_txtMName" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z\-,'\.\s]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The Middle Name you entered is invalid.</span><BR> <SPAN class="formLabel">Last Name: <SPAN class="required">*</SPAN></SPAN> <input name="enroll1:txtLName" type="text" maxlength="50" id="enroll1_txtLName" /> <select name="enroll1:ddlSuffix" id="enroll1_ddlSuffix"> <option value=""></option> <option value="Sr.">Sr.</option> <option value="Jr.">Jr.</option> <option value="I">I</option> <option value="II">II</option> <option value="III">III</option> <option value="IV">IV</option> </select> <span id="enroll1_rfvLName" class="validationError" controltovalidate="enroll1_txtLName" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your last name.</span> <span id="enroll1_RegularExpressionValidator2" class="validationError" controltovalidate="enroll1_txtLName" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z\-,'\.\s]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The Last Name you entered is invalid.</span><BR> <SPAN class="formLabel">E-mail Address: <SPAN class="required">*</SPAN></SPAN> <input name="enroll1:txtEmail" type="text" maxlength="40" size="50" id="enroll1_txtEmail" /> <span id="enroll1_rfvtxtEmail" class="validationError" controltovalidate="enroll1_txtEmail" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">You must enter your E-mail Address.</span> <span id="enroll1_revEmailFormat" class="validationError" controltovalidate="enroll1_txtEmail" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The E-mail Address you entered is invalid.</span><BR> <SPAN class="formLabel">Confirm E-mail Address: <SPAN class="required">*</SPAN></SPAN> <input name="enroll1:txtConfirmEmail" type="text" maxlength="40" size="50" id="enroll1_txtConfirmEmail" /> <span id="enroll1_cvtxtEmail" class="validationError" controltovalidate="enroll1_txtEmail" display="Dynamic" evaluationfunction="CompareValidatorEvaluateIsValid" controltocompare="enroll1_txtConfirmEmail" controlhookup="enroll1_txtConfirmEmail" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The e-mail addresses you entered do not match. Please check to see that we have the correct address and that they are spelled the same way.</span><BR> <BR> <span class="description">Your <strong>password</strong> should be 8 <strong>(eight)</strong> or more characters in length. It is recommended that the password should include a combination of upper/lower case, alphanumeric and special characters to <strong>enhance security</strong>.</span><br/><span class="formLabel"><span id="enroll1_lblaflogin_password">Password: *</span></span><span class="formInput"><input name="enroll1:aflogin_password" type="password" id="enroll1_aflogin_password" /></span><a href="javascript:DisplayHelp('divlogin_passwordHelp');"><img src="/common/img/helpbutton.gif" alt="Help"/></a><div style="DISPLAY:none;" class="HelpBubbleOff" id="divlogin_passwordHelp"><div class="closeHelp"><a href="javascript:CloseHelp('divlogin_passwordHelp');">Close</a></div><br><p>Your <strong>password</strong> should be 8 <strong>(eight)</strong> or more characters in length. It is recommended that the password should include a combination of upper/lower case, alphanumeric and special characters to <strong>enhance security</strong>.</p> <p><strong>To help protect the security of your account, please remember the following:</strong></p> <ul> <li>Do not write your password down.</li> <li>Do not tell anyone your password.</li> <li>Use a different password for everything you do on the Internet.</li> <li>Do not keep it in any files.</li> <li>Do not send it via email.</li> </ul> </div><span id="enroll1_rfvlogin_password" class="validationError" controltovalidate="enroll1_aflogin_password" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please complete Password.</span><br><span class="formLabel"><span id="enroll1_lblConfirmlogin_password">Confirm Password: *</span></span><span class="formInput"><input name="enroll1:afConfirmlogin_password" type="password" id="enroll1_afConfirmlogin_password" /></span><span id="enroll1_cvlogin_password" class="validationError" controltovalidate="enroll1_aflogin_password" display="Dynamic" evaluationfunction="CompareValidatorEvaluateIsValid" controltocompare="enroll1_afConfirmlogin_password" controlhookup="enroll1_afConfirmlogin_password" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Password must match Confirm Password exactly.</span><span id="enroll1_revlogin_password" class="validationError" controltovalidate="enroll1_aflogin_password" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^.*(?=.{8,}).*$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Password format is incorrect.</span><br><span class="description">We ask for your mobile phone number because you will receive a phone call when you are applying for credit verifying that you approve the transaction. If you do not have a mobile phone number, put the number where you are most easily reached. We will never sell your phone number (or any other information) to anyone for any reason.</span><br/><span class="formLabel"><span id="enroll1_lblpphonelblPhone">Mobile Phone: *</span></span><span class="formInput">(<input name="enroll1:afPhone1pphone" type="text" maxlength="3" size="3" id="enroll1_afPhone1pphone" onkeyup="try{if(enroll1_afPhone1pphone.value.length == 3) { enroll1_afPhone2pphone.focus();}else{return true;}}catch(e){}" />)<input name="enroll1:afPhone2pphone" type="text" maxlength="3" size="3" id="enroll1_afPhone2pphone" onkeyup="try{if(enroll1_afPhone2pphone.value.length == 3) { enroll1_afPhone3pphone.focus();}else{return true;}}catch(e){}" />-<input name="enroll1:afPhone3pphone" type="text" maxlength="4" size="4" id="enroll1_afPhone3pphone" /></span><span id="enroll1_rfvPhone1pphone" class="validationError" controltovalidate="enroll1_afPhone1pphone" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter Mobile area code.</span><span id="enroll1_rfvPhone2pphone" class="validationError" controltovalidate="enroll1_afPhone2pphone" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter Mobile.</span><span id="enroll1_rfvPhone3pphone" class="validationError" controltovalidate="enroll1_afPhone3pphone" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter Mobile.</span><span id="enroll1_revPhone1pphone" class="validationError" controltovalidate="enroll1_afPhone1pphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{3}$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Mobile is not valid.</span><span id="enroll1_revPhone2pphone" class="validationError" controltovalidate="enroll1_afPhone2pphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{3}$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Mobile is not valid.</span><span id="enroll1_revPhone3pphone" class="validationError" controltovalidate="enroll1_afPhone3pphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{4}" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Mobile is not valid.</span><br><span class="formLabel"><span id="enroll1_lblsphonelblPhone">Home Phone:</span></span><span class="formInput">(<input name="enroll1:afPhone1sphone" type="text" maxlength="3" size="3" id="enroll1_afPhone1sphone" onkeyup="try{if(enroll1_afPhone1sphone.value.length == 3) { enroll1_afPhone2sphone.focus();}else{return true;}}catch(e){}" />)<input name="enroll1:afPhone2sphone" type="text" maxlength="3" size="3" id="enroll1_afPhone2sphone" onkeyup="try{if(enroll1_afPhone2sphone.value.length == 3) { enroll1_afPhone3sphone.focus();}else{return true;}}catch(e){}" />-<input name="enroll1:afPhone3sphone" type="text" maxlength="4" size="4" id="enroll1_afPhone3sphone" /></span><span id="enroll1_revPhone1sphone" class="validationError" controltovalidate="enroll1_afPhone1sphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{3}$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Home is not valid.</span><span id="enroll1_revPhone2sphone" class="validationError" controltovalidate="enroll1_afPhone2sphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{3}$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Home is not valid.</span><span id="enroll1_revPhone3sphone" class="validationError" controltovalidate="enroll1_afPhone3sphone" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^\d{4}" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Home is not valid.</span><br><span class="formLabel"><span id="enroll1_lblafreference_id">How did you hear about us?: *</span></span><span class="formInput"><select name="enroll1:afreference_id" id="enroll1_afreference_id"> <option value="">Please select</option> <option value="2310">It is a benefit of my company. </option> <option value="2311">I am the victim of a company breach. </option> <option value="457">I heard your CEO give out his SSN in an ad. </option> <option value="1024">I heard Rush Limbaugh talk about you. </option> <option value="1915">I heard Dan Patrick talk about you. </option> <option value="1236">I heard Dr. Laura talk about you. </option> <option value="1238">I heard Paul Harvey talk about you. </option> <option value="104">I heard Sean Hannity talk about you. </option> <option value="1356">I heard about you on Sirius Satellite Radio. </option> <option value="1237">I heard about you on XM Satellite Radio. </option> <option value="1293">I read a magazine article. </option> <option value="2315">I heard about you through a speaking engagement. </option> <option value="1239">I read about you in a blog. </option> <option value="1240">I saw an Internet ad. </option> <option value="458">I heard a radio interview. </option> <option value="2314">I read a newspaper article. </option> <option value="2313">I saw a news story on TV. </option> <option value="1994">I saw a TV advertisement. </option> <option value="109">A friend or family member told me about you. </option> <option value="110">I was just searching the Internet and found you. </option> <option value="111">I do not really remember (other).</option> </select></span><span id="enroll1_rfvreference_id" class="validationError" controltovalidate="enroll1_afreference_id" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please complete How did you hear about us?.</span><br><span class="description">Why do you think you or your family members will become a victim of Identity Theft? *</span><br/><span class="formInput"><select name="enroll1:afclient_risk" id="enroll1_afclient_risk" onchange="javascript:showError('afclient_risk', true, 'This is a required field.', '', '', 'I have no reason.', '!=', 'In order for us to provide you with our services, a reason must be chosen.');"> <option value="">Please select</option> <option value="I am already a victim of Identity Theft.">I am already a victim of Identity Theft. </option> <option value="I am the victim of a company breach.">I am the victim of a company breach. </option> <option value="One of my friends or family members is a victim of Identity Theft.">One of my friends or family members is a victim of Identity Theft. </option> <option value="I have heard media reports that give me a reason.">I have heard media reports that give me a reason. </option> <option value="I have been contacted by a third party telling me that my personal information has been compromised.">I have been contacted by a third party telling me that my personal information has been compromised. </option> <option value="I know that someone else has access to my personal information.">I know that someone else has access to my personal information. </option> <option value="My wallet or purse was stolen.">My wallet or purse was stolen. </option> <option value="My home or business was burglarized.">My home or business was burglarized. </option> <option value="An organization that has access to my information has announced a loss of personal data.">An organization that has access to my information has announced a loss of personal data. </option> <option value="I have another reason, but it is not on this list.">I have another reason, but it is not on this list. </option> <option value="I have multiple reasons.">I have multiple reasons. </option> <option value="My reason is confidential.">My reason is confidential. </option> <option value="I have no reason.">I have no reason.</option> </select></span><span id="enroll1_rfvclient_risk" class="validationError" controltovalidate="enroll1_afclient_risk" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">This is a required field.</span><span id="enroll1_cvafclient_risk" class="validationError" controltovalidate="enroll1_afclient_risk" display="Dynamic" evaluationfunction="CompareValidatorEvaluateIsValid" valuetocompare="I have no reason." operator="NotEqual" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error"> In order for us to provide you with our services, a reason must be chosen.</span><br> <DIV id="enroll1_divAdditionalMembers"> <HR> <H2> <span id="enroll1_lblAdditionalMembers">Additional Members</span></H2> <P>Each member of your family is vulnerable to Identity theft. Your initial subscription covers only you. If you would like us to protect anyone else in your family, please enter them here. Remember that your kids are especially vulnerable, and that we provide special protection services for children under the age of 16 only. Young adults ages 16-18 should be protected by our adult plan.</P> <span id="enroll1_lblAdditionalMembersContent"></span><BR> <SPAN id="sAdditionalMemberError"></SPAN><SPAN id="additionalMembers"> <TABLE> <TR> <TD>Relationship</TD> <TD class="amFName">First Name</TD> <TD class="amMName">Middle Name</TD> <TD class="amLName">Last Name</TD> <TD class="amAdd"> </TD> </TR> </TABLE> <span id="enroll1_lblAdditionalMembersAdded"><table></table></span> <table id="enroll1_tblAdditionalMembers" class="bottomTable" border="0"> <tr> <td><select name="enroll1:ddlRelationship" id="enroll1_ddlRelationship"> <option value="">Please select</option> <option value="Spouse.Adults">Spouse</option> <option value="Other Adult.Adults">Other Adult</option> <option value="Minor (Under 16).Kids">Minor (Under 16)</option> </select></td><td class="amFName"><input name="enroll1:amFName" type="text" maxlength="20" id="enroll1_amFName" /></td><td class="amMName"><input name="enroll1:amMName" type="text" maxlength="20" id="enroll1_amMName" /></td><td class="amLName"><input name="enroll1:amLName" type="text" maxlength="50" id="enroll1_amLName" /> <select name="enroll1:amSuffix" id="enroll1_amSuffix"> <option value=""></option> <option value="Sr.">Sr.</option> <option value="Jr.">Jr.</option> <option value="I">I</option> <option value="II">II</option> <option value="III">III</option> <option value="IV">IV</option> </select></td><td class="amAdd"> <input type="button" value="Add" onclick="javascript:AddMember();"> </td> </tr> </table></SPAN><!--close additionalMembers--></DIV> <BR> <SPAN class="packagePrice"> <span id="enroll1_lblPackagePrice">Your package price is <b>$110.00</b> per year and every year thereafter.</span></SPAN> <HR> <DIV class="ccInfo"> <H2>Billing Information</H2> <P>This address should be the one at which your credit card company sends bills to you.</P> <SPAN class="formLabel">Billing Address: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCAddress" type="text" size="40" id="enroll1_txtCCAddress" /> <span id="enroll1_rfvCCAddress" class="validationError" controltovalidate="enroll1_txtCCAddress" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your credit card billing address.</span> <span id="enroll1_Regularexpressionvalidator6" class="validationError" controltovalidate="enroll1_txtCCAddress" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z0-9\-,#/\\:&\.\s]+" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The Billing Address you entered is invalid.</span></SPAN><BR> <SPAN class="formLabel">City: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCCity" type="text" size="30" id="enroll1_txtCCCity" /> <span id="enroll1_rfvCCCity" class="validationError" controltovalidate="enroll1_txtCCCity" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your billing city.</span> <span id="enroll1_Regularexpressionvalidator3" class="validationError" controltovalidate="enroll1_txtCCCity" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z\-'\s\.]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The Billing City you entered is invalid.</span></SPAN><BR> <SPAN class="formLabel">State: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <select name="enroll1:ddlCCState" id="enroll1_ddlCCState"> <option value="">--</option> <option value="AA">AA</option> <option value="AE">AE</option> <option value="AL">AL</option> <option value="AK">AK</option> <option value="AP">AP</option> <option value="AR">AR</option> <option value="AS">AS</option> <option value="AZ">AZ</option> <option value="CA">CA</option> <option value="CO">CO</option> <option value="CT">CT</option> <option value="DC">DC</option> <option value="DE">DE</option> <option value="FL">FL</option> <option value="GA">GA</option> <option value="GU">GU</option> <option value="HI">HI</option> <option value="ID">ID</option> <option value="IL">IL</option> <option value="IN">IN</option> <option value="IA">IA</option> <option value="KS">KS</option> <option value="KY">KY</option> <option value="LA">LA</option> <option value="ME">ME</option> <option value="MD">MD</option> <option value="MA">MA</option> <option value="MH">MH</option> <option value="MI">MI</option> <option value="MN">MN</option> <option value="MO">MO</option> <option value="MP">MP</option> <option value="MS">MS</option> <option value="MT">MT</option> <option value="NE">NE</option> <option value="NV">NV</option> <option value="NH">NH</option> <option value="NJ">NJ</option> <option value="NM">NM</option> <option value="NY">NY</option> <option value="NC">NC</option> <option value="ND">ND</option> <option value="OH">OH</option> <option value="OK">OK</option> <option value="OR">OR</option> <option value="PA">PA</option> <option value="PR">PR</option> <option value="PW">PW</option> <option value="RI">RI</option> <option value="SC">SC</option> <option value="SD">SD</option> <option value="TN">TN</option> <option value="TX">TX</option> <option value="UM">UM</option> <option value="UT">UT</option> <option value="VT">VT</option> <option value="VA">VA</option> <option value="WA">WA</option> <option value="WV">WV</option> <option value="WI">WI</option> <option value="WY">WY</option> </select> <span id="enroll1_rfvCCState" class="validationError" controltovalidate="enroll1_ddlCCState" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your billing state.</span></SPAN><BR> <SPAN class="formLabel">Zip Code: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCZip" type="text" maxlength="5" size="10" id="enroll1_txtCCZip" /> <span id="enroll1_rfvCCZip" class="validationError" controltovalidate="enroll1_txtCCZip" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your billing zip code.</span> <span id="enroll1_revZipCode" class="validationError" controltovalidate="enroll1_txtCCZip" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="\d{5}" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The billing zip code you entered is invalid.</span></SPAN><BR> <P>My primary residence is the same as my Billing Address above: * <span id="enroll1_rfvIsPrimary" controltovalidate="enroll1_rblIsPrimary" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;visibility:hidden;"><img src="/common/img/errorXAnimate.gif" alt="error" class="validationError">Is your primary residence the same as the Billing Address above?</span><BR> <table id="enroll1_rblIsPrimary" border="0"> <tr> <td><input id="enroll1_rblIsPrimary_0" type="radio" name="enroll1:rblIsPrimary" value="true" /><label for="enroll1_rblIsPrimary_0">Yes</label></td><td><input id="enroll1_rblIsPrimary_1" type="radio" name="enroll1:rblIsPrimary" value="false" /><label for="enroll1_rblIsPrimary_1">No</label></td> </tr> </table></P> <DIV id="enroll1_divCreditCard"><SPAN class="formLabel">Name on Credit Card: <SPAN class="required"> *</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCName" type="text" size="40" id="enroll1_txtCCName" /> <span id="enroll1_rfvCCName" class="validationError" controltovalidate="enroll1_txtCCName" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">You did not enter the name for your credit card.</span> <span id="enroll1_RegularExpressionValidator4" class="validationError" controltovalidate="enroll1_txtCCName" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[a-zA-Z\-,'\.\s]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The name entered for your credit card is invalid.</span></SPAN><BR> <SPAN class="formLabel">Card Type: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <select name="enroll1:ddlCCType" id="enroll1_ddlCCType" onchange="javascript:checkCVV();"> <option value="MasterCard">MasterCard</option> <option value="Visa">Visa</option> <option value="Amex">American Express</option> <option value="Discover">Discover</option> </select> </SPAN><BR> <SPAN class="formLabel">Card Number: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCNumber" type="text" size="25" id="enroll1_txtCCNumber" autocomplete="off" /> <span id="enroll1_rfvCCNumber" class="validationError" controltovalidate="enroll1_txtCCNumber" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your credit card.</span></SPAN> <span id="enroll1_CCValidator" class="validationError" evaluationfunction="RCValidateCreditCardNumber" controltovalidate="enroll1_txtCCNumber" display="Dynamic" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The card you entered is invalid.</span><BR> <SPAN class="formLabel">Exp. Date: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <select name="enroll1:ddlCCExpMonth" id="enroll1_ddlCCExpMonth"> <option value=""></option> <option value="1">Jan</option> <option value="2">Feb</option> <option value="3">Mar</option> <option value="4">Apr</option> <option value="5">May</option> <option value="6">Jun</option> <option value="7">Jul</option> <option value="8">Aug</option> <option value="9">Sept</option> <option value="10">Oct</option> <option value="11">Nov</option> <option value="12">Dec</option> </select>/ <select name="enroll1:ddlCCExpYear" id="enroll1_ddlCCExpYear"> <option value=""></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> </select> <span id="enroll1_rfvCCExpMonth" class="validationError" controltovalidate="enroll1_ddlCCExpMonth" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your expiration month.</span> <span id="enroll1_rfvCCExpYear" class="validationError" controltovalidate="enroll1_ddlCCExpYear" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your expiration year.</span></SPAN><BR> <SPAN class="formLabel">Security Code: <SPAN class="required">*</SPAN></SPAN> <SPAN class="formInput"> <input name="enroll1:txtCCSecurityCode" type="text" maxlength="4" size="4" id="enroll1_txtCCSecurityCode" autocomplete="off" onkeyup="javascript:checkCVV();" onkeydown="javascript:checkCVV();" /> <a href="javascript:DisplayHelp('divSecurityCodeHelp');"><img src="/common/img/helpbutton.gif" alt="Help"/></a><div style="DISPLAY:none;" class="HelpBubbleOff" id="divSecurityCodeHelp"><div class="closeHelp"><a href="javascript:CloseHelp('divSecurityCodeHelp');">Close</a></div><br><p>The card security code is a unique three or four-digit number printed on your debit/credit card. The number is not embossed on the card so that it cannot be printed on receipts - making it difficult for anyone other than the genuine cardholder to know it.</p> <table> <tbody> <tr> <td><img src="/common/img/cardCvvdiagram.gif" /></td> <td>Visa, Mastercard, and Discover, use the last three-digit number printed on the reverse of the card.</td> </tr> <tr> <td><img src="/common/img/amexCvvdiagram.gif" /></td> <td>American Express cards have a four-digit number printed on the front of the card, above the account number.</td> </tr> </tbody> </table> <br /> <br /> </div> <span id="enroll1_rfvCCSecurityCode" class="validationError" controltovalidate="enroll1_txtCCSecurityCode" display="Dynamic" evaluationfunction="RequiredFieldValidatorEvaluateIsValid" initialvalue="" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">Please enter your credit card security code.</span> <span id="enroll1_Regularexpressionvalidator5" class="validationError" controltovalidate="enroll1_txtCCSecurityCode" display="Dynamic" evaluationfunction="RegularExpressionValidatorEvaluateIsValid" validationexpression="^[\d]+$" style="color:Red;display:none;"><img src="/common/img/errorXAnimate.gif" alt="error">The security code entered is invalid.</span></SPAN><BR> <SPAN class="description">The security code (also called CVV, CVC or CID) is a three (3) digit number on the back of your MasterCard or Visa, and a four (4) digit number on the front of your American Express.</SPAN><BR> </DIV> <SPAN class="formLabel"> </SPAN> <SPAN class="formInput"></SPAN> </DIV> <DIV class="clearBoth"></DIV> <HR> <h2>Here are the official terms of our agreement. They are important so take a moment to read them. Just scroll the window to read it or <a href="/about-us/about-lifelock/terms-of-use.aspx" target="_blank">click here to view</a>.</h2> <DIV class="scrollDiv"> <p>THESE ARE THE TERMS OF OUR AGREEMENT WITH EACH OTHER. WHILE WE TRIED TO MAKE IT NOT TOO FULL OF LEGALESE, ALL OF IT IS IMPORTANT SO TAKE A FEW MOMENTS TO READ IT. BY ACCEPTING LIFELOCK'S SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE READ, UNDERSTOOD, AND AGREE TO THESE TERMS AND CONDITIONS.</p> <p>This Terms and Conditions Agreement ("Agreement") identifies what you can expect from LifeLock, Inc. and its subsidiaries ("LifeLock") and what LifeLock expects from you. These terms and conditions apply to your purchase of any service offered by LifeLock.</p> <p>If you do not agree, we can not allow you to subscribe or continue to use our service.</p> <p>1. Description of our Service ("Service"):</p> <blockquote class="c1" dir="ltr"> <p>A. For individuals sixteen (16) years of age or older, we will, upon enrollment:</p> <blockquote class="c1" dir="ltr"> <p>(i) request that Equifax, Experian and TransUnion, or other credit bureau as may become appropriate, place fraud alerts on your consumer reports to the extent permitted by 15 U.S.C. § 1681c-1. Your fraud alert will include up to two telephone numbers provided by you. While you are our client, we will attempt to renew these alerts as often as required to keep them active until such time that you notify us that you no longer have a good faith suspicion that you have been or are about to become a victim of fraud or related crime, including identity theft;</p> <p>(ii) request, to the extent permitted by 15 U.S.C. § 1681b(e), that your name be removed from pre-approved credit card mailing lists;</p> <p>(iii) request that your name be removed from junk-mail lists by using the opt-out options established by the Direct Marketing Association;</p> <p>(iv) order, upon enrollment and once a year thereafter, your free annual credit reports from TransUnion, Experian, and Equifax, or other credit bureau as may become appropriate, as permitted by 15 U.S.C. § 1681j(a).</p> </blockquote> </blockquote> <blockquote class="c1" dir="ltr"> <p>B. For individuals fifteen (15) years of age or younger, we will, upon enrollment:</p> <blockquote class="c1" dir="ltr"> <p>(i) request that Equifax, Experian and TransUnion, or other credit bureau as may become appropriate, place fraud alerts on their consumer reports to the extent permitted by 15 U.S.C. § 1681c-1. If a consumer report is found to match, we will attempt to renew these alerts as often as required, while you subscribe for this particular service, to keep them active until such time that you, or the particular individual, notify us that there is no longer a good faith suspicion that the individual has been or is about to become a victim of fraud or related crime, including identity theft. If a consumer report is not found to match for the individual, LifeLock will confirm every one hundred, eighty (180) days that no matching consumer report has been created;</p> <p>(ii) order, upon enrollment and once a year thereafter, the individual’s annual free credit reports from TransUnion, Experian, and Equifax, or other credit bureau as may become appropriate, as permitted by 15 U.S.C. § 1681j(a), to the extent that they exist and to the extent that the information provided to us matches such a report;</p> <p>(iii) annually prepare a request to the Social Security Administration for a copy of the individual’s Social Security Earnings Report. This request will be forwarded to the individual’s parent or guardian who will then be responsible for its submission to the Social Security Administration.</p> </blockquote> </blockquote> <blockquote class="c1" dir="ltr"> <p>C. In addition, individuals under eighteen (18) years of age must have our Service administered by a parent or legal guardian.</p> </blockquote> <p>2. Our Service Guarantee (Warranty) is in support of our Service under this Agreement and is provided without additional charge:</p> <blockquote class="c1" dir="ltr"> <p>A. If you are our client when someone accesses your personal identifying information and subsequently uses it without your authorization to commit a fraud, due to a failure or defect in our Service, and you have complied with this Agreement, subject to the terms herein, we will pay professionals to assist in restoring any such loss or recover such expenses, as required, provided however that the maximum limit of our Service Guarantee is $1 (one) million per lifetime for all incidents in the aggregate.</p> <p>B. You must be truthful with us and you must tell us of the use of your personal identifying information without your authorization to commit a fraud within 30 days of first learning of it. You agree to cooperate with those we hire to help you.</p> <p>C. If you need professional assistance to help remediate damages caused by the failure or defect in our Service, we will arrange for, and cover the expense of, that assistance to be provided to you through persons or firms we select; we will not reimburse fees of professionals or other service providers unless we choose those providers for your particular matter. Any such professionals, if required or applicable, will be licensed in the jurisdiction where your particular matter resides.</p> <p>D. We will cure any failure or defect in our Service, resulting in damages you incur, subject to the terms of this Agreement as follows:</p> </blockquote> <blockquote class="c1" dir="ltr"> <p>(i) If the amount involved is over $1,000, we reserve the right to investigate the Service Guarantee request in order to determine whether the request is valid before we do anything else. We will perform our investigation as promptly as we can. If our investigation shows that a reasonable person would conclude that your personal identifying information was used without your authorization to commit a fraud while you were our client and you have complied with all this Agreement, we will perform as described herein.</p> </blockquote> <blockquote class="c1" dir="ltr"> <p>E. If we find that you intentionally misrepresented damages or committed a fraud related crime and misrepresented that you were our client when your information was misused, you agree to pay us back upon demand any amount we have paid in connection with your claim, including any costs we incur to collect the money from you. Being found guilty of a crime related to the loss which you attributed to identity theft is sufficient evidence to conclude that we are entitled to recover all amounts paid on your behalf as described above, but it is not the only basis upon which we may so conclude.</p> <p>F. Similarly, should we decline your Service Guarantee request following our investigation and that decision subsequently is determined to have been wrong, we will honor our Service Guarantee.</p> <p>G. OUR SERVICE GUARANTEE IS SIMPLE, BUT IT IS LIMITED. WE WILL PAY UP TO $1,000,000 TO CURE THE FAILURE OR DEFECT IN OUR SERVICE, PER CLIENT, PER LIFETIME FOR ALL INCIDENTS IN THE AGGREGATE, REGARDLESS OF CIRCUMSTANCE (‡ IN NORTH CAROLINA, WE WILL MAKE PAYMENTS TO PROFESSIONALS WE CHOOSE). WE WILL NOT MAKE PAYMENTS TO YOU FOR ANY LOSS YOU MAY INCUR. OTHER THAN OUR SERVICE GUARANTEE, AND EXCEPT AS OTHERWISE SET OUT HEREIN WE MAKE NO REPRESENTATION OR WARRANTY ABOUT OUR SERVICE OF ANY KIND, AND WE DISCLAIM ANY IMPLIED WARRANTIES OUTSIDE OF OUR SERVICE GUARANTEE, SUCH AS A WARRANTY OF MERCHANTABILITY OR FITNESS OF OUR SERVICE FOR ANY PARTICULAR PURPOSE.</p> </blockquote> <p>3. Renewal: Your account will be automatically renewed for one month or one year, depending on the term you initially select, on the anniversary date of your enrollment.</p> <p>4. Cancellation: There is no long-term commitment with LifeLock. You can cancel at any time by calling us at 877 LIFELOCK (543-3562) and notifying us of your intention to cancel. If you are an annual subscriber, we will refund any unused amount.</p> <p>5. Privacy Policy: We respect your privacy. Please see on http://www.LifeLock.com/privacy or on the "TrustE" button on the home page of our website to review our Privacy Policy, the terms and conditions of which are incorporated into this Agreement. If you do not have access to the website location, please inform us so that we may provide you a hardcopy. You agree to accept the terms of the Privacy Policy as a condition of acceptance of this Agreement.</p> <p>6. Information Sharing: In order to fulfill our services, LifeLock must provide your personal identifying information with third parties including, but not limited to: TransUnion, Experian and Equifax, or other credit bureau as may become appropriate. You agree that LifeLock may provide your information to these third parties. Therefore, you waive any and all claims against LifeLock for the acts and omissions of these companies with regard to the use or disclosure of such information. However, LifeLock will cover any resulting failures that arise from any misuse of your information whether or not attributable to acts of such third parties to the extent covered by the terms set forth in our Service Guarantee.</p> <p>7. Refusal of Service: We will determine whether or not to accept you as a client and provide to you the Service, and we may refuse to provide to you our Service for any reason. These reasons include, but are not limited to, credit review, the unavailability of the Service, and errors in the prices and descriptions pertaining to the Service.</p> <p>8. Payment Terms/Taxes: Payment for the Service may be made by bank cards or other mutually agreed upon payment instrument. You are personally responsible for any applicable state and/or federal sales or other taxes that may be associated with the purchase of our Service.</p> <p>9. Authorization: By accepting these terms and conditions, you expressly authorize LifeLock's authorized employees to: complete and execute on your behalf documents required to provide the Service; speak to parties on your behalf as required to provide the Service; and, act as your personal representative under 15 U.S.C. § 1681c-1, under which consumers or their authorized representatives have the right to obtain fraud alerts. In addition, in the event of, and as a condition to, you exercising your right to our Service Guarantee, you agree to execute a Limited Power of Attorney authorizing Lifelock's performance. Consistent with this Agreement, when you invoke our Service Guarantee, LifeLock shall promptly provide you such Limited Power of Attorney document and shall begin such assistance after we receive your executed Limited Power of Attorney authorizing our assistance.</p> <p>10. Disclaimers and Limitation of Liability: LifeLock assumes no responsibility for errors or omissions in the information or other documents which are referenced by or linked to Lifelock's web site. As noted above, and except as otherwise set out herein, we will not be liable for any special, incidental, indirect or consequential damages of any kind, nor any damages whatsoever other than as set forth in our Service Guarantee. LifeLock will not be liable for any failure or delay resulting from fire, explosion, flood, storm, act of God, government acts, orders or regulations, hostilities, civil disturbance, strike, labor difficulties, machinery breakdown, Internet or telecommunications failure, or any other similar event beyond the reasonable commercial control of LifeLock.</p> <p>11. Governing Law: This agreement and any Service provided hereunder will be governed by the laws of the state of Arizona, without regard to any Arizona laws that would direct the choice of another state's laws and, where applicable, to be governed by the federal laws of the United States. Subject to paragraph 12 (which provides for arbitration of claims between us to the maximum extent possible), you irrevocably and unconditionally consent to submit to the exclusive jurisdiction of the federal or state courts in the State of Arizona for any dispute or litigation arising out of, or relating to, the use or purchase of any Service from LifeLock, and waive any objection to the laying of venue of any such litigation in Arizona courts and agree not to claim that such litigation brought therein has been brought in an inconvenient forum; in other words, if we have a dispute, you agree to resolve it in an Arizona court.</p> <p>12. Arbitration: Both you and we agree that any dispute, controversy or claim arising out of, or relating to, any interpretation, construction, performance or breach of this Agreement or the Service shall be settled by confidential arbitration , in accordance with the American Arbitration Association’s ("AAA") Commercial Arbitration Rules (including without limitation the Supplementary Procedures for Consumer-Related Disputes) then in effect. The arbitrator may grant injunctions or other relief in such dispute or controversy. A single arbitrator with knowledge of electronic commerce will conduct the arbitration and the parties will mutually agree upon such arbitrator. In the event that the parties have not agreed on an arbitrator within thirty (30) days of the date of the notice of intention to arbitrate, the arbitrator will be selected by AAA from its list of commercial arbitrators. The arbitrator will conduct a single hearing no longer than one day in duration for the purpose of receiving evidence and will render a decision within fifteen days after the conclusion of the hearing. The decision of the arbitrator will be final, conclusive and binding on the parties to the arbitration. Judgment may be entered on the arbitrator’s decision in any state or federal court. Although the cost of the arbitrator will be borne by LifeLock, all other expenses of arbitration will be paid by the party who incurred them. These expenses are not part of our Service Guarantee. In addition to, and separate and apart from, the above agreement to arbitrate any dispute, controversy or claim arising out of, or relating to, any interpretation, construction, performance or breach of this Agreement or the Service, you also agree that you will not participate in any way in any class action in connection with any such dispute, controversy or claim, either as a class representative plaintiff or as a member of a putative class.</p> <p>13. Change of Terms: We may revise this Agreement at any time. However, we may not make any changes retroactive. We will notify you of any changes at the e-mail address or mailing address associated with your account. If you do not contact LifeLock and express your objection to our changes within thirty (30) days of receiving this notice, you shall be deemed a continuing use client and agree to be bound by any such revisions.</p> <p>If you fail to comply with any of these terms and conditions, we may at any time terminate your rights under this Agreement at our sole discretion and without prior notice. However, we may not void our responsibilities under our Service Guarantee for damages that arise prior to any termination by us of the Service Guarantee.</p> <p>14. Indemnification: You agree to indemnify, defend and hold LifeLock and any of its affiliates and all of their agents, directors, employees, information providers and licensors and licensees harmless from and against any and all liability and costs (including attorneys' fees and costs) incurred by any of these parties in connection with any claim arising out of any willful or intentional breach by you of these terms and conditions. In the event that either (a) you are the subject of claims for which you properly seek damages from us under these terms and conditions, or (b) we are subject to any claim for which we have the right to be indemnified by you, we reserve the right at our expense in the case of claims in clause (a) and at your expense in the case of claims in clause (b), to assume the exclusive defense and control of any such claim, and you will not in any event settle any such claim without our written consent.</p> <p>15. Trademarks, Copyrights and Restrictions: LifeLock and the LifeLock logo are trademarks of LifeLock, Inc. Everything you see in any promotional materials is copyrighted by LifeLock unless otherwise specified. All other product names and company logos found on promotional materials are the trademarks of their respective owners. All promotional materials are protected by copyrights, which are owned or licensed by LifeLock. You may not reproduce, perform, create derivative works from, republish, upload, post, transmit, or distribute in any way whatsoever any LifeLock information without the express, written consent of LifeLock, Inc.</p> <p>16. CREDIT REPAIR AND INSURANCE: LIFELOCK IS NOT A CREDIT REPAIR ORGANIZATION. LIFELOCK CANNOT IMPROVE YOUR CREDIT HISTORY OR CREDIT RATING. LIFELOCK WILL NOT PROVIDE YOU WITH ADVICE OR ASSISTANCE IN IMPROVING YOUR CREDIT HISTORY OR CREDIT RATING; RATHER WE WILL HIRE PROFESSIONALS TO ASSIST YOU. PLEASE SEE SECTION 2 OF THIS AGREEMENT FOR THE DEFINITION OF OUR SERVICE GUARANTEE.</p> <p>LifeLock is neither an insurance company nor an agent for any insurance company and does not sell, solicit or negotiate insurance.</p> <p>17. Miscellaneous: These terms and conditions may not be altered, supplemented, or amended by you by the use of any other document(s). Any attempt to alter, supplement or amend this document or to enter an order for the Service which is subject to additional or altered terms and conditions will be null and void, unless agreed to in writing and signed by you and LifeLock. The section headings used herein are for convenience of reference only and do not form a part of these terms and conditions, and no construction or inference will be derived therefrom. If any provision of this Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable and shall not affect the enforceability of any other provision.</p> <p>18. Description of your obligations: You agree that you are only providing your own personal information and not the information of any other individual. You agree that the information you provide during the registration process and any subsequent information you provide to LifeLock will be true, accurate, and current. YOU ARE OBLIGATED TO CONTACT LIFELOCK CLIENT SERVICES IN THE EVENT THAT ANY INFORMATION YOU HAVE PROVIDED LIFELOCK HAS CHANGED. In addition, you agree that you will not purposely engage in behavior that will put your personal information at unnecessary risk, such as leaving your PIN or passwords in obvious places or publishing your Social Security Number. You additionally agree that you have a good faith suspicion that you have been or are about to become a victim of fraud or related crime, including identity theft, that you want to obtain fraud alerts under 15 U.S.C. § 1681c-1, and that you will notify LifeLock immediately if and when you no longer have such a good faith suspicion. You agree to comply with all applicable laws and regulations and that you are buying the Service for your own use only. You agree that you are eighteen (18) years of age or older.</p> <p>You agree to pay us the fee we publish for our Service, less any discounts to which you may be entitled.</p> <p>19. Agreement Assent: YOU AND LIFELOCK HAVE ENTERED INTO THIS AGREEMENT, WHETHER ELECTRONICALLY, BY RECORDED VOICE AUTHORIZATION, OR VIA PHYSICAL COPY, INTENDING TO BE BOUND BY YOUR ACCEPTANCE OF THE AGREEMENT. IN THE FUTURE, YOU AGREE TO BE BOUND TO THESE SPECIFIC TERMS AND CONDITIONS OF SALES, AND MODIFICATIONS TO THIS AGREEMENT, BY CONTINUING TO USE OUR SERVICE AFTER WE HAVE NOTIFIED YOU OF THOSE TERMS AND CONDITIONS. NOTIFICATIONS, OR ANY OTHER COMMUNICATIONS, INCLUDING BILLING, PAYMENT, AND/OR DISCLOSURES WILL BE MADE VIA THE MAIL, TELEPHONE, OR EMAIL ADDRESS ASSOCIATED WITH YOUR ACCOUNT. THIS AGREEMENT MAY BE PRINTED OR RETAINED BY YOU FOR FUTURE REFERENCE.</p> <p>20. You may withdraw your acceptance of this agreement at any time by notifying LifeLock Client Services by phone or in writing. Upon notification of your withdrawal of acceptance, LifeLock will cancel your service.</p> <p>21. Acknowledgment: The Agreement, including all documents referred to herein, represents the entire understanding between you and LifeLock regarding your relationship with LifeLock and supersedes any prior statements or representations. When using or purchasing the LifeLock Service, you agree to be bound by these terms and conditions. Thank you for your business.</p> <p>Revised 19 December, 2007</p> </DIV> <SPAN class="formInput CheckBox"> <input id="enroll1_ckTermsAndConditions" type="checkbox" name="enroll1:ckTermsAndConditions" /> <LABEL for="ckTermsAndConditions">I acknowledge that I have read and accepted the Terms and Conditions Agreement between myself and LifeLock.</LABEL> </SPAN> <BR> <BR> <HR> <BR> <SPAN class="totalLine"> <span id="enroll1_lblTotalLine">Please only click 'Charge my credit card for LifeLock' once. Your credit card will be charged a total of $110.00 on 2/25/2008.</span></SPAN><BR> <input type="submit" name="enroll1:btnProcess" value="Charge my credit card for LifeLock" id="enroll1_btnProcess" onclick="javascript:ProcessOrder();" /> <P></P> <!-- *** CLICK TRACKING CODE 3.0 *** --><script language="JavaScript" type="text/javascript" defer="1" src="https://keywordmax.com/tracking/show.php?id=661075270&location=Homepage"></script> <noscript> <img src="https://keywordmax.com/tracking/log.php?id=661075270&loc=Homepage" border="0" width="1" height="1"></noscript><!-- ^^^ CLICK TRACKING CODE 3.0 ^^^ --><img src="https://secure.leadback.advertising.com/adcedge/lb?site=695501&srvc=1&betr=lifelock_cs=1&betq=3572=375244&" width = "1" height = "1" border = "0"> <!-- ATLAS START --><script>document.write('<s'+'cript language="JavaScript" src="https://switch.atdmt.com/jaction/LifeLock_Landing_Secure"></s'+'cript>')</script><noscript><iframe src="https://switch.atdmt.com/iaction/LifeLock_Landing_Secure" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe></noscript> <!-- END ATLAS --> </div> <!--close fullMaster--> <div class="clearBoth"> </div> </div> <!-- Close main --> </div> <!-- Close siteContainer --> <div id="footerContainer"> <div id="footer"> <div id="footerContent"> <div id="bottomNav1"> <ul> <li><a href="http://www.lifelock.com/about-us">About Us</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us/about-lifelock/contact-us">Contact Us</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us/about-lifelock/testimonials">Testimonials</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us/about-lifelock/endorsements">Endorsements</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us/press-room">Press Room</a></li> </ul> <ul> <li><a href="http://www.lifelock.jobs">Careers</a></li> </ul> </div> <div class="clearBoth"></div> </div><!-- close footerContent --> <div id="footerContent2"> <div id="footerImages"> <a target="_blank" href="https://www.scanalert.com/RatingVerify?ref=www.lifelock.com"><img width="115" height="32" border="0" src="//images.scanalert.com/meter/www.lifelock.com/12.gif" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime." oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"></a> <a href="http://www.lifelock.com/about-us/about-lifelock/privacy-policy"><IMG height=31 alt=TRUST-e src="/common/Img/finalmark.gif" width=116 /></a> </div> <div id="bottomNav2"> <ul> <li><a href="http://www.lifelock.com/about-us/about-lifelock/privacy-policy">Privacy Policy</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/about-us/about-lifelock/terms-and-conditions">Terms and Conditions</a></li> </ul> <ul> <li><a href="http://www.lifelock.com/site-map">Site Map</a></li> </ul> <p>Copyright © 2006-2008. LifeLock. All Rights Reserved.</p> </div> <div class="clearBoth"></div> </div><!-- Close footerContent2 --> </div><!-- Close footer --> </div><!-- Close footerContainer --> </div><!--Close bodyID--> <script src="/common/Script/lifelock.js" type="text/javascript"></script> <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-1304930-1"; _udn = "lifelock.com"; urchinTracker(); </script> <div id="overlay" style="display:none;"></div> <div id="lightbox" style="display:none;"></div> <script language="javascript" type="text/javascript"> <!-- var Page_ValidationSummaries = new Array(document.all["enroll1_vsSummary"]); var Page_Validators = new Array(document.all["enroll1_rfvFName"], document.all["enroll1_regexFirstName"], document.all["enroll1_RegularExpressionValidator1"], document.all["enroll1_rfvLName"], document.all["enroll1_RegularExpressionValidator2"], document.all["enroll1_rfvtxtEmail"], document.all["enroll1_revEmailFormat"], document.all["enroll1_cvtxtEmail"], document.all["enroll1_rfvlogin_password"], document.all["enroll1_cvlogin_password"], document.all["enroll1_revlogin_password"], document.all["enroll1_rfvPhone1pphone"], document.all["enroll1_rfvPhone2pphone"], document.all["enroll1_rfvPhone3pphone"], document.all["enroll1_revPhone1pphone"], document.all["enroll1_revPhone2pphone"], document.all["enroll1_revPhone3pphone"], document.all["enroll1_revPhone1sphone"], document.all["enroll1_revPhone2sphone"], document.all["enroll1_revPhone3sphone"], document.all["enroll1_rfvreference_id"], document.all["enroll1_rfvclient_risk"], document.all["enroll1_cvafclient_risk"], document.all["enroll1_rfvCCAddress"], document.all["enroll1_Regularexpressionvalidator6"], document.all["enroll1_rfvCCCity"], document.all["enroll1_Regularexpressionvalidator3"], document.all["enroll1_rfvCCState"], document.all["enroll1_rfvCCZip"], document.all["enroll1_revZipCode"], document.all["enroll1_rfvIsPrimary"], document.all["enroll1_rfvCCName"], document.all["enroll1_RegularExpressionValidator4"], document.all["enroll1_rfvCCNumber"], document.all["enroll1_CCValidator"], document.all["enroll1_rfvCCExpMonth"], document.all["enroll1_rfvCCExpYear"], document.all["enroll1_rfvCCSecurityCode"], document.all["enroll1_Regularexpressionvalidator5"]); // --> </script> <script language="javascript" type="text/javascript"> <!-- var Page_ValidationActive = false; if (typeof(clientInformation) != "undefined" && clientInformation.appName.indexOf("Explorer") != -1) { if ((typeof(Page_ValidationVer) != "undefined") && (Page_ValidationVer == "125")) ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } return true; } // --> </script> </form> </body> </HTML>