﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<JavaScriptCodeBlocks>
  <Profile name="Individual">
    <JSBlock id="d16a1367-0e3c-435d-a835-285b2a1b4227">
      <Description><![CDATA[Name: First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.first_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8358517619784470544"><![CDATA[tmp = individual.first_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="29165028-cc81-4b6e-87f7-a7fd0838ff1b">
      <Description><![CDATA[Name: Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.middle_initial.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17960732099126140130"><![CDATA[tmp = individual.middle_initial.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b98db08-f5f7-416d-9485-3ed8ed142a10">
      <Description><![CDATA[Name: Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10504365234838756144"><![CDATA[tmp = individual.last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="86b12607-0bc1-411d-b87d-473b30ad5f7d">
      <Description><![CDATA[Name: Suffix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Suffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.suffix.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6437111630062160105"><![CDATA[tmp = individual.suffix.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="805d0f85-fb4c-4cb9-88be-5d4daf1668a4">
      <Description><![CDATA[Name: First + Middle Initial + Last + Suffix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="5914223145212337410"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15793209560533404566"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial + " " + individual.last_name + " " + individual.suffix).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="5281041036321775098"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="03cbdc0e-afd3-454b-a11f-b0724e193011">
      <Description><![CDATA[Name: First + Middle Initial + Suffix + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.suffix) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="2703223814878640882"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.suffix) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="17931035966857177598"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial + " " + individual.suffix + " " + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="133854757742967825"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.suffix + ' ' + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b1ef7709-7ef5-4474-9d36-76ef23ad23d4">
      <Description><![CDATA[Name: First + Middle Initial + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4486092256412204436"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="16577443053022776758"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial + " " + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4008929125457741780"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="80e0331e-4e0a-459f-9b42-ae214cd95614">
      <Description><![CDATA[Name: First + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="8203861513738611436"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11543425569303669700"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2571850555868711098"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1a1706d8-2269-4fae-b431-d40d06252a96">
      <Description><![CDATA[Name: First + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12811718230459892062"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6979438829913570749"><![CDATA[tmp = (individual.first_name + " " + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="5347499841312210193"><![CDATA[tmp = (individual.first_name + ' ' + individual.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="601b0728-dfa0-4bbf-9e31-d62e23423ef7">
      <Description><![CDATA[Name: First + Last + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.last_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="18357633849714290479"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.last_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6368217830156369685"><![CDATA[tmp = (individual.first_name + " " + individual.last_name + " " + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10075981917479195477"><![CDATA[tmp = (individual.first_name + ' ' + individual.last_name + ' ' + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5fa13509-996d-4018-9996-77ea64d0b571">
      <Description><![CDATA[Name: Last + First + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6426466527376495730"><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13286316995869734712"><![CDATA[tmp = (individual.last_name + " " + individual.first_name + " " + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4397138391797946200"><![CDATA[tmp = (individual.last_name + ' ' + individual.first_name + ' ' + individual.middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a05b86ee-2752-4476-9a75-0656e289ae52">
      <Description><![CDATA[Name: Last + First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.first_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15978415961343595317"><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.first_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10429861798233247132"><![CDATA[tmp = (individual.last_name + " " + individual.first_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13125852474952203351"><![CDATA[tmp = (individual.last_name + ' ' + individual.first_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c3dc87ab-c6fd-4fbc-bf13-8c810e8a4601">
      <Description><![CDATA[Name: Last + Suffix + First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.suffix) + " " + (individual.first_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6434442770988807211"><![CDATA[tmp = ("" + (individual.last_name) + " " + (individual.suffix) + " " + (individual.first_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7462907976521538249"><![CDATA[tmp = (individual.last_name + " " + individual.suffix + " " + individual.first_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="14471953738812866714"><![CDATA[tmp = (individual.last_name + ' ' + individual.suffix + ' ' + individual.first_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="57a614ba-e098-44b3-887f-437fbe2718df">
      <Description><![CDATA[Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2246366764393767826"><![CDATA[tmp = individual.address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6bbf5d5d-a95d-4f1f-a91e-587ad02acccf">
      <Description><![CDATA[Address: Apartment Number with "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18394066260293774499"><![CDATA[tmp = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b5a33ebc-fb80-4369-a9ab-f9e09facbdaa">
      <Description><![CDATA[Address: Apartment Number only - no "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.apartment_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8055673539144675778"><![CDATA[tmp = individual.apartment_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2062e621-fdf7-42b7-8527-35fff4fbdf36">
      <Description><![CDATA[Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12864276140334153601"><![CDATA[tmp = individual.city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1b09e34b-c512-4f90-9caf-728f32216a77">
      <Description><![CDATA[Address: County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.County</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.county.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4192484060198221619"><![CDATA[tmp = individual.county.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ac5db73f-3711-4e84-81ad-58c7a666ff68">
      <Description><![CDATA[Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7016131287498958948"><![CDATA[tmp = individual.state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="775b4846-5d89-4cc4-aece-1fe9d413d439">
      <Description><![CDATA[Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17082704429592200272"><![CDATA[tmp = individual.zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="887a8330-aa7a-487e-b034-3f2cbde3680d">
      <Description><![CDATA[Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="17745532944655983453"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b17a897d-8f2c-4c1c-879a-8cbd2be4bcf4">
      <Description><![CDATA[Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="17745532944655983453"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e1c5662-e10d-4a3b-b5de-6d48a8c10f9e">
      <Description><![CDATA[Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7904069692902993268"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="15092980927020074834"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="7530848326307890635"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bc0396f8-ff58-4b43-8625-5c34ced1fb64">
      <Description><![CDATA[Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3429176853278715599"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="216873210331192935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="1148529663427892056"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f8ed994b-d734-4184-bd1e-7f8c85a7bcaa">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="17745532944655983453"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd285395-61d4-42b9-99bb-ca93e8860e33">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen or Zip Code 5 digits with a space, hyphen, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit or 9 digit zip code with a space char before and after the hyphen - 99999 or 99999-9999
// or 99999 - 9999 - defaults to .strip.
//
// We will just process a 5 digit or a hyphenated 9 digit zip code and leave it at that.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="1303970620391773243"><![CDATA[myMatches = myReg.exec(individual.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15498116015491845003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="799730937003167317"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
        <JSExpression hash="9953641706444925029"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = individual.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fff7c430-0c52-407e-ae40-ff00ddbf9d2e">
      <Description><![CDATA[Address: Zip Code 5 digits|Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Zip</Tag>
        <Tag var="box1_2">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="4304846709101840889"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="88c59406-e69a-4205-985a-5eaee81eaafe">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + (individual.apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16893529493676211673"><![CDATA[tmp = (individual.address + (individual.apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ac70893a-aa3d-49e8-9b4a-206fdf59fc2a">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #') + individual.apartment_number).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5106320092171865818"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #') + individual.apartment_number).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f8cf66ee-ebd6-4ac1-a8a5-bda7b3881f72">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12129274483309951921"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0b6336b7-679b-4e95-ab73-152d0f3afd88">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5301648812159516366"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3d7fdeee-14e1-4de9-8c3f-634a753346ea">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.County</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16514189583319750044"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fea398e4-bf1a-45f4-b298-e08d11675d11">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City + State + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.County</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7609345503128337391"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="087ae369-aa22-4208-95dc-39e9c6aff6bf">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7040690710713965602"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a984dd0c-04a9-484b-beba-99d9dfcd11e7">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : (", " + (individual.city) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15826499781351728331"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : (", " + (individual.city) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13882808437513569260"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : (", " + (individual.city)))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="309039977051097678"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : (', ' + (individual.city)))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="68c106a8-ad19-4533-8c5f-4754ed5529cd">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15865108300911120531"><![CDATA[tmp = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="777c6f29-8dbf-4f9c-b7bf-6a0e677b9126">
      <Description><![CDATA[Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16186156036559911575"><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e164258-cfa1-4fe0-b680-826e9a669868">
      <Description><![CDATA[Address: City + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16387217284639419879"><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9f0b691d-dc29-49ba-a5f9-115ef9b80105">
      <Description><![CDATA[Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5597956584462547664"><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e823a3d6-7662-4221-8a01-b6aba1a2b38c">
      <Description><![CDATA[Address: City + County + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.County</Tag>
        <Tag var="box1_1">Individual.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + (individual.county.trim().isEmpty() ? '' : individual.county + ', ') + individual.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17644707995066778211"><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + (individual.county.trim().isEmpty() ? '' : individual.county + ', ') + individual.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="15d34b1a-d2ea-4e63-b19d-8222062fa414">
      <Description><![CDATA[Address: City + State + Zip + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
        <Tag var="box1_1">Individual.County</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip + ' ' + individual.county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11304450392107466238"><![CDATA[tmp = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip + ' ' + individual.county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="759e7d8a-f60b-4430-af64-b74f0140da34">
      <Description><![CDATA[Address: County + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.County</Tag>
        <Tag var="box1_1">Individual.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.county.trim().isEmpty() ? '' : individual.county + ', ') + individual.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1910590310696409738"><![CDATA[tmp = ((individual.county.trim().isEmpty() ? '' : individual.county + ', ') + individual.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e8579621-29fb-4716-a7cb-34e4087a4844">
      <Description><![CDATA[Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4453377968948720779"><![CDATA[tmp = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="59c9dd14-1583-484e-98bc-fcf9e00968a5">
      <Description><![CDATA[Address: Street Address + Apartment Number with "Apt. #" prefix + City + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.address + (individual.apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : ', ' + individual.city) + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15977470713611792221"><![CDATA[tmp = (individual.address + (individual.apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.apartment_number) + (individual.city.trim().isEmpty() ? '' : ', ' + individual.city) + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="25820bc4-f48d-474f-8478-3befe8f46ca6">
      <Description><![CDATA[Phone: Home Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4628780691413238018"><![CDATA[tmp = individual.phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d105ba9f-6176-48d3-bc9a-60396c049031">
      <Description><![CDATA[Phone: Home Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="1333810089146522562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1354cf4c-6dd7-4d63-85d8-68005b4d7510">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7016444079890386091"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11072271924915382247"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11013035030577004170"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fe3e064b-6a29-4288-8190-4c5cdb44bbb1">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5459359293834576469"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="13992226050761758341"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="4736418904718330512"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="285c737d-e15a-4ae0-ba6e-f219bf9b078f">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9918719414138935161"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="825041168486856319"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16741917863478751046"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2597d507-0ab5-41d1-a4d4-edc8f00cadae">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1031973792822219613"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="7142594305164440085"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="2638241448310982415"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6facdb49-4122-4c1f-b15e-12fef47612cc">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4461988762220237722"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="4864727540157358306"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="6294386590635896633"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1051b898-7ccd-43d9-9800-854f36e0c385">
      <Description><![CDATA[Phone: Home Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2817621616924015275"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="1457384067224972399"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9753931974373415109"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f11fec32-e719-4b7f-8d27-317e4d1d04d2">
      <Description><![CDATA[Phone: Home Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8435345301544276504"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1650243927603703034"><![CDATA[myMatches = myReg.exec(individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2598460680922070267"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9151005650391479283"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16291479756989985239"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="717517b7-5f72-42a9-8fa5-274cab532a91">
      <Description><![CDATA[Phone: Home Phone Area Code|Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15619017197292798669"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6386583044190590242"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11976076228478233085"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a0730e28-61c4-45bd-a6bd-2cf3c8b0bbbe">
      <Description><![CDATA[Phone: Home Phone Area Code|Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1447533836443731222"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17838478139435009823"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3874993055230988124"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="edb512f1-f6d2-479e-ab64-496c2b04df98">
      <Description><![CDATA[Phone: Home Phone Area Code in parenthesis|Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5191957056665733941"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10122215720301289084"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8849409664359304386"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="dcabdb16-b53c-43e1-8dbf-5420373a9e79">
      <Description><![CDATA[Phone: Home Phone Area Code in parenthesis|Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1878593968257714127"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4783833405752862665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="18351712821426628423"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c5e31650-25bb-497c-8041-bc6626222015">
      <Description><![CDATA[Phone: Home Phone Area Code|Phone: Home Phone 3 digit exchange|Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3055820853929231475"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5b7e5556-518a-4f5c-8d3b-0370c41dba10">
      <Description><![CDATA[Phone: Home Phone Area Code in parenthesis|Phone: Home Phone 3 digit exchange|Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1630475932562066453"><![CDATA[condvar = (individual.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8146014598975901950"><![CDATA[condvar = (individual.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1007420087039201023"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2773736890212707025"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="737642155315401296"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="529b000a-a6d5-43cd-802f-15972e849856">
      <Description><![CDATA[Phone: Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.work_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7474565874421887742"><![CDATA[tmp = individual.work_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9c04386-8458-48dc-bf94-49403d238928">
      <Description><![CDATA[Phone: Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="7568228807406751153"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0b56a236-4846-400e-b30e-b5819d58b553">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7369392585969053259"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17837542513674724866"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6035709073976602025"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d01e56cf-0ba9-428d-9ef8-31bdd87efd3a">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12101211900268064928"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11120176710382403703"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8354435542509492996"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ee9c0a15-7709-4ba6-a507-07d583adf060">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3625382929246128697"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="18274592463153835312"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2153430216704088216"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="28429ac7-899f-4bff-bcb8-e29cc9d22aa7">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16955319260769567743"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13352763763106981420"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13809330664552978990"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d3f67441-7adc-4e79-970b-452d82d3665b">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13927011005756202775"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4163882829646958425"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3102057884226833194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1db593c6-f14f-4c92-a7d1-933e0cb0f297">
      <Description><![CDATA[Phone: Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16422866354623270361"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4174009925677111101"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3552660000855118350"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e6a6007-42f4-49f0-9c21-f3363c3aa4f1">
      <Description><![CDATA[Phone: Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17778287287654920432"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7651189350856216387"><![CDATA[myMatches = myReg.exec(individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5705909793634403222"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3327520513377545021"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16966161214525119592"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="45c8b49e-1b82-464a-84d9-3a671d626219">
      <Description><![CDATA[Phone: Work Phone Area Code|Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8582279584553514054"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9824208104538281044"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4315360832038427311"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="500a0e6e-2246-4e48-98f0-728215ac259c">
      <Description><![CDATA[Phone: Work Phone Area Code|Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11989221267180691352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="902789200895847334"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12473332890345680594"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d44bec8b-af3c-4505-ab3b-1fc8410a2869">
      <Description><![CDATA[Phone: Work Phone Area Code in parenthesis|Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1066095474823598903"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9011375381153817091"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16131462642371216635"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0c57759d-efbf-407c-b8b8-0b940eebe579">
      <Description><![CDATA[Phone: Work Phone Area Code in parenthesis|Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1519747736754778494"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="681692661242092538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7417664154907177214"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7fa02ef9-c5bf-47a5-95a9-61ebbb6b370e">
      <Description><![CDATA[Phone: Work Phone Area Code|Phone: Work Phone 3 digit exchange|Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="1015793206564678468"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3728c85f-e7df-4ccf-89c0-ffed26a9f39f">
      <Description><![CDATA[Phone: Work Phone Area Code in parenthesis|Phone: Work Phone 3 digit exchange|Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10693106007487146017"><![CDATA[condvar = (individual.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5175929399924576350"><![CDATA[condvar = (individual.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16121473325356142453"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7204992205480782693"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9996476358308457222"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b6992dea-5501-4ef0-b605-67020ff704f3">
      <Description><![CDATA[Phone: Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.mobile_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13847445979027740665"><![CDATA[tmp = individual.mobile_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="52e232cb-5c38-47f7-ae3d-c5f12b38445c">
      <Description><![CDATA[Phone: Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="10322147040878120184"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8f00d7f1-c5e4-4154-9739-5884b0ce8929">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14848544979900590350"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9847109557323229535"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5500450632686514381"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="74649059-037c-4d0e-9ac6-524e972b4088">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15186531512851308503"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12478338595532471501"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2800649994823109946"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="41bf387f-58b8-419d-a3ff-58e4ef5532df">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8217731332192291172"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15555631486788453554"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13576097951308192536"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f4013d59-c5fa-4aab-bc6b-2bfa0aad9322">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16850592797400837634"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="508039740225699300"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16629263303541028025"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="caa579b5-1d65-4d59-8f88-4cbac3c611ac">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7315626374519230923"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12386999661430116506"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10234857408874413091"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="70900dc6-9dcd-49fd-8ba3-bbd97a2ef9ba">
      <Description><![CDATA[Phone: Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6820318957081888895"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3771420849376908147"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12666784242481781038"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e48eab4-075e-43b7-bedc-94528715ba11">
      <Description><![CDATA[Phone: Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3174951806229921884"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="434875339784502770"><![CDATA[myMatches = myReg.exec(individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13250099719418717515"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16333263481303854980"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15348955838152864714"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aa1280be-5b25-48b9-9ab2-a93ef8a33916">
      <Description><![CDATA[Phone: Mobile Phone Area Code|Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15808053288116229660"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7142611961014151524"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17358107118913192669"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="aeccf9e6-0b89-45ec-a16e-dbc05c4c8967">
      <Description><![CDATA[Phone: Mobile Phone Area Code|Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3415370036741234028"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16791502628562724947"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12083483292473340810"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0a1cfe6a-e7ec-437c-8da7-c285618649b4">
      <Description><![CDATA[Phone: Mobile Phone Area Code in parenthesis|Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7090006711815700633"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="573166260737666696"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8869603344870178461"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e4735297-90d2-4edd-bb43-58e520dd5b6c">
      <Description><![CDATA[Phone: Mobile Phone Area Code in parenthesis|Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3851403582988943535"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15631524088513475416"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5201040524739052892"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="37add7b1-0108-4d14-a119-d48ff82b70c3">
      <Description><![CDATA[Phone: Mobile Phone Area Code|Phone: Mobile Phone 3 digit exchange|Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="12708663040466701903"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8ae676b-7847-4d8a-91d1-598e83f14980">
      <Description><![CDATA[Phone: Mobile Phone Area Code in parenthesis|Phone: Mobile Phone 3 digit exchange|Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3926172816108206067"><![CDATA[condvar = (individual.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9643776504835567720"><![CDATA[condvar = (individual.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7746412529894711517"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1472815096007912754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="18325795273656565361"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b27fed44-d1af-4991-bfdd-2b5e5be00a26">
      <Description><![CDATA[Phone: Home/Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="033d392b-0e9e-427e-93ab-39f3f7765312">
      <Description><![CDATA[Phone: Home/Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="10768d7e-1102-4a84-8b96-439a5f01eeaa">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb358c74-b695-4231-b9e6-2bc63a1e90f9">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="474829ae-ffa6-4052-b9f3-7946ee913450">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d23b27d7-b680-4efd-ab22-2f247478aaca">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="22a669ce-45f5-43f6-b39d-6ec8499a9c1c">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e44f2f30-c8e2-40f4-9e88-046eb885158f">
      <Description><![CDATA[Phone: Home/Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a7342375-7353-4e02-aa4d-934e885ed11e">
      <Description><![CDATA[Phone: Home/Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a4e078a8-84a0-411c-8196-459af3f33ed5">
      <Description><![CDATA[Phone: Home/Work Phone Area Code|Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3a1660d0-33b8-4b44-9081-4949869a1581">
      <Description><![CDATA[Phone: Home/Work Phone Area Code|Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="4ef48b2c-18f3-4271-b7fd-aa842d7261d9">
      <Description><![CDATA[Phone: Home/Work Phone Area Code in parenthesis|Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d260e953-ef3a-4146-9f04-bdb7e3fd575d">
      <Description><![CDATA[Phone: Home/Work Phone Area Code in parenthesis|Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="45d356a9-33f2-4fd8-81b0-896642019532">
      <Description><![CDATA[Phone: Home/Work Phone Area Code|Phone: Home/Work Phone 3 digit exchange|Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="387dea84-91b6-4dcb-98db-52dadd350a21">
      <Description><![CDATA[Phone: Home/Work Phone Area Code in parenthesis|Phone: Home/Work Phone 3 digit exchange|Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="7737537992851148722"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0579cb92-5149-4b53-bb97-ace5532113a6">
      <Description><![CDATA[Phone: Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ccdd7f8d-d92b-4a2c-9b19-d75430879ee9">
      <Description><![CDATA[Phone: Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="63f7c4af-655d-4c1e-9048-92a1889ab853">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0342d1bb-adf4-4ced-bbb1-62fb64a6fd1c">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e7c8cc73-0c86-4546-85b0-024e78bd36f3">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="16fda128-9536-4f8e-9b85-450d54bc7a34">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="33fdc16b-11af-4e61-a4c5-ef1835f58ffa">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="354cf8d0-ad1d-4ad5-b9ae-0efb3018ebe1">
      <Description><![CDATA[Phone: Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e307d1d3-af2d-4f67-b18c-169958109b39">
      <Description><![CDATA[Phone: Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2e64e1d5-e719-4917-b4c7-766ec018190e">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code|Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="fe86e821-5bc0-4492-b910-759a49b5c7e1">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code|Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="255bf7e7-0a4e-403c-b5db-efdc272838c1">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code in parenthesis|Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="62b7c063-afb1-4b6c-b3d5-2d5812aa0b28">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code in parenthesis|Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e7a29236-039d-4839-9d56-bed6faee77e9">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code|Phone: Home/Mobile Phone 3 digit exchange|Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9fa8c9a0-413c-444e-a4a4-25c777a5cdab">
      <Description><![CDATA[Phone: Home/Mobile Phone Area Code in parenthesis|Phone: Home/Mobile Phone 3 digit exchange|Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="14383748456964275845"><![CDATA[tmp = (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="354b96dc-cf39-46ac-8432-0282ff16fbf8">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9287d5bb-f38a-4859-b428-57a602e499f9">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2463195c-3394-4c3d-b8c7-e14b639ef946">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="829a038f-5b24-4ca5-a554-40789035ca9f">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9d4db846-b3a2-4559-8408-0a1c377ab627">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e01b5d3-71b1-4ecb-be59-b0643683036a">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5a68b271-0fb5-4169-a89f-8b5327953faf">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b51c343d-0eb8-4eae-b0c1-4ae59b2d6b34">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="db53382e-dac6-4661-8ef2-04c9f2a5e29b">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b419c7b7-a1fa-4c2c-81a1-b673ad64c58b">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code|Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6256fd70-5d70-4456-b6e2-f7d193100ca6">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code|Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="846c5902-cece-43b2-8e9e-aaee8b47cb82">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code in parenthesis|Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="fb131f9b-6e7c-4b57-b977-0836e89152fa">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code in parenthesis|Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="91c5aad5-ba59-495e-8c23-e65135d87e36">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code|Phone: Work/Home/Mobile Phone 3 digit exchange|Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6e3b0ec3-93b9-4a24-8703-4a3a5fce1874">
      <Description><![CDATA[Phone: Work/Home/Mobile Phone Area Code in parenthesis|Phone: Work/Home/Mobile Phone 3 digit exchange|Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="461e07d6-c1ea-4eab-82e3-f94d775e7a77">
      <Description><![CDATA[Name+Phone: [First+MI+Last+Suffix] + [Work/Home/Mobile Phone]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}
tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1524928452971176071"><![CDATA[if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16587979858744255061"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15325527190937962441"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial + " " + individual.last_name + " " + individual.suffix + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15078662313658017748"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="963a72e0-b34b-4cef-9ccf-9bf9ff9abea3">
      <Description><![CDATA[Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13431123075701372277"><![CDATA[tmp = individual.fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5f105b90-260c-4aac-88e8-2a9540c72605">
      <Description><![CDATA[Phone+Fax: Home Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.phone) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1076637986982878920"><![CDATA[tmp = ("" + (individual.phone) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="12114946732889157570"><![CDATA[tmp = (individual.phone + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="14841695761602261208"><![CDATA[tmp = (individual.phone + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="23d377da-c530-49df-966a-70476ff140f9">
      <Description><![CDATA[Phone+Fax: Work Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.work_phone) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13432821803086887883"><![CDATA[tmp = ("" + (individual.work_phone) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="18121092257528465775"><![CDATA[tmp = (individual.work_phone + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="1461970590545235569"><![CDATA[tmp = (individual.work_phone + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5c3c1302-dc63-4b5c-8209-bcca5e28d9e9">
      <Description><![CDATA[Phone+Fax: Mobile Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.mobile_phone) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="2105312662444330804"><![CDATA[tmp = ("" + (individual.mobile_phone) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="14312153166325095050"><![CDATA[tmp = (individual.mobile_phone + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="7722443367460519065"><![CDATA[tmp = (individual.mobile_phone + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9527f331-9126-4e7e-aef5-0c625d995e7b">
      <Description><![CDATA[Phone+Fax: [Home/Work] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9184385710303732013"><![CDATA[tmp = ("" + (individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="12884922560279694571"><![CDATA[tmp = ((individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone) + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="16001420463795034986"><![CDATA[tmp = ((individual.phone.trim().isEmpty() ? individual.work_phone : individual.phone) + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df707714-1810-4132-84aa-a57bb481b676">
      <Description><![CDATA[Phone+Fax: [Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12809572275047808585"><![CDATA[tmp = ("" + (individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="2586571529143458671"><![CDATA[tmp = ((individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone) + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="1511344587953892675"><![CDATA[tmp = ((individual.phone.trim().isEmpty() ? individual.mobile_phone : individual.phone) + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e857aa1d-f117-45fb-a5d4-90865b106878">
      <Description><![CDATA[Phone+Fax: [Work/Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
tmp = ("" + (tmp) + "  " + (individual.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8798885920076727841"><![CDATA[if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9899283648171847706"><![CDATA[tmp = ("" + (tmp) + "  " + (individual.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="9861941718257482616"><![CDATA[tmp = (tmp + "  " + individual.fax).trim();]]></JSExpression>
        <JSExpression hash="3688713350214467002"><![CDATA[tmp = (tmp + '  ' + individual.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="832c7f30-d603-42cd-b3c6-80315c9e8888">
      <Description><![CDATA[SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5366935548364268144"><![CDATA[tmp = individual.ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c5958291-75c3-4494-b150-c9fee0f8bdf2">
      <Description><![CDATA[SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17814639042476038484"><![CDATA[tmp = individual.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="8563803356380989732"><![CDATA[tmp = individual.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a38deacd-e4b4-42f9-a348-99ba370e1acd">
      <Description><![CDATA[SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.ssn.delete(/[^0-9]/g).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15405310096242816331"><![CDATA[tmp = individual.ssn.delete(/[^0-9]/g).toString().trim();]]></JSExpression>
        <JSExpression hash="7296444968083560134"><![CDATA[tmp = individual.ssn.delete(/\-/g).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="41f8102a-733e-4503-8a7c-0322f6bd8100">
      <Description><![CDATA[SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17620700867714523235"><![CDATA[tmp = individual.ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1af33ed1-600c-44cc-90a1-2d42b9de9fb4">
      <Description><![CDATA[SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = individual.ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17814639042476038484"><![CDATA[tmp = individual.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="8563803356380989732"><![CDATA[tmp = individual.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2980a2fd-28e2-487c-ad80-bd6b4efbba05">
      <Description><![CDATA[SSN|SSN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// We also have a checkbox to indicate this is a SSN.
//
if (!((individual.ssn.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', individual.ssn.trim());
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JS>
      <JSExpression hash="16212452060045215087"><![CDATA[if (!((individual.ssn.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', individual.ssn.trim());
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7b563c57-89ea-4d8f-ac12-0b33bd692014">
      <Description><![CDATA[SSN: 9 digits only|SSN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN: 9 digits - 999999999.
// We also have a checkbox to indicate this is a SSN.
//
if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17519355224578963913"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="7697958704142848930"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2692c1b4-b045-45da-8019-daa3e22dc207">
      <Description><![CDATA[SSN: Spaces instead of hyphens|SSN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN: 9 digits - 999 99 9999.
// We also have a checkbox to indicate this is a SSN.
//
if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="791166820140967030"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="18271225650362171361"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="9738957443369224684"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="13573654858728755525"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="13039160463458151209"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="7038457327634045205"><![CDATA[if ((myMatches = /^(\d{3})(\d\d)(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1bb74103-8b28-48e6-afdf-9a4b74635a31">
      <Description><![CDATA[SSN: Last 4 digits|SSN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN.
// We also have a checkbox to indicate this is a SSN.
//
if ((myMatches = /^\d{5}(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6428159856356025747"><![CDATA[if ((myMatches = /^\d{5}(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="9519484035399704587"><![CDATA[if ((myMatches = /^\d{5}(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5a1dc7e1-4312-4c44-9cd6-c2222342c598">
      <Description><![CDATA[SSN: First 3 digits|SSN: Next 2 digits|SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9893754299054026284"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1088307866498976564"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="09f714d7-b997-479d-aab2-b55bcb1b396b">
      <Description><![CDATA[SSN: 9 digits digit1|digit2|...digit9]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
        <Tag var="box1_4">Individual.SSN</Tag>
        <Tag var="box1_5">Individual.SSN</Tag>
        <Tag var="box1_6">Individual.SSN</Tag>
        <Tag var="box1_7">Individual.SSN</Tag>
        <Tag var="box1_8">Individual.SSN</Tag>
        <Tag var="box1_9">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15008936118367001090"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }]]></JSExpression>
        <JSExpression hash="141888801531227647"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.ssn.delete(/\-/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b1ee8874-5d56-4b68-b84b-d4e31b4ab581">
      <Description><![CDATA[SSN: 9 digits digit1|digit2|...digit9]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
        <Tag var="box1_2">Individual.SpouseSSN</Tag>
        <Tag var="box1_3">Individual.SpouseSSN</Tag>
        <Tag var="box1_4">Individual.SpouseSSN</Tag>
        <Tag var="box1_5">Individual.SpouseSSN</Tag>
        <Tag var="box1_6">Individual.SpouseSSN</Tag>
        <Tag var="box1_7">Individual.SpouseSSN</Tag>
        <Tag var="box1_8">Individual.SpouseSSN</Tag>
        <Tag var="box1_9">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1515155282327296079"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }]]></JSExpression>
        <JSExpression hash="13025045569951927616"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(individual.spouse_ssn.delete(/\-/g))) != null) {
                SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[1].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[1].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[1].substr(6, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[1].substr(7, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[1].substr(8, 1));
            }]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="44cfcf95-f189-40f6-abc7-c080b619ea2b">
      <Description><![CDATA[Occupation]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Occupation</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.occupation.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10977272851342712609"><![CDATA[tmp = individual.occupation.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8597e2db-79fd-4d67-a170-dc66964464fe">
      <Description><![CDATA[School Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SchoolCode</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.school_code.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8915462381301787982"><![CDATA[tmp = individual.school_code.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5193d1bd-7f5f-4c7e-bfb5-9568140c6057">
      <Description><![CDATA[Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Email</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9560179584051189102"><![CDATA[tmp = individual.email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9fe4457b-ec01-4d44-8b88-fe9b03275e9d">
      <Description><![CDATA[Blind Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Blind</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.blind.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5270302070399444834"><![CDATA[if (!individual.blind.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="60180a69-5fd8-44f5-878c-a76be2d54738">
      <Description><![CDATA[65+ Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SixtyFivePlus</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.sixty_five_plus.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2057467356364232420"><![CDATA[if (!individual.sixty_five_plus.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d63fd482-75d0-4bee-8fbe-6ed4ae4980e5">
      <Description><![CDATA[Name+Address: First + Middle Initial + Last + Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13450658424727346111"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="05043458-21c3-4a92-88eb-36195e14e697">
      <Description><![CDATA[Name+Address: First + Middle Initial + Last + Suffix + Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix + ' ' + individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10805098562255452053"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix + ' ' + individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number + ' ') + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3045654b-0893-4b5c-8f77-7aeb34d6849b">
      <Description><![CDATA[Spouse Name: First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_first_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1692402406362796666"><![CDATA[tmp = individual.spouse_first_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b96c7c96-a967-4a89-8d13-7c6f5e997d94">
      <Description><![CDATA[Spouse Name: Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_middle_initial.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10736771242440617909"><![CDATA[tmp = individual.spouse_middle_initial.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a6c9e7aa-676f-4e19-beee-7176e8b52eac">
      <Description><![CDATA[Spouse Name: Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12691372046875584722"><![CDATA[tmp = individual.spouse_last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="551d1521-4407-480a-b0cd-4def44c2899d">
      <Description><![CDATA[Spouse Name: Suffix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_suffix.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8500345159360004424"><![CDATA[tmp = individual.spouse_suffix.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="38df0dc6-8115-4ad6-bb4b-3d267a5afed5">
      <Description><![CDATA[Spouse Name: First + Middle Initial + Last + Suffix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12775918369778003697"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2646915354729579785"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name + " " + individual.spouse_suffix).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="17540505314236399680"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d27ca3fb-aa58-40d6-b73e-e64e61e5649c">
      <Description><![CDATA[Spouse Name: First + Middle Initial + Suffix + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_suffix) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4234962316856142980"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_suffix) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10336218587405869689"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_suffix + " " + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12540289648353837426"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_suffix + ' ' + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ba6729fc-d50f-40d9-8110-00932fe02694">
      <Description><![CDATA[Spouse Name: First + Middle Initial + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="3432220610528420956"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13017338055511038750"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8806732176358294602"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="123c114f-04db-4f80-82a6-a820967b0eda">
      <Description><![CDATA[Spouse Name: First + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="8887700679363297179"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8579374443268534305"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2315430521080700047"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="423998cf-f933-4be6-8685-d9f2a64a62da">
      <Description><![CDATA[Spouse Name: First + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17100384391511575374"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8360130732825044312"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12178377854534355006"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b13aa730-b501-4085-b89b-21ad3d593110">
      <Description><![CDATA[Spouse Name: First + Last + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="11096514955439310981"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7358485581731250841"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_last_name + " " + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12756985033217258177"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_last_name + ' ' + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc4b2518-da0a-4ab6-9bf4-8e738993dfed">
      <Description><![CDATA[Spouse Name: Last + First + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13209104957974853919"><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10313880773997952465"><![CDATA[tmp = (individual.spouse_last_name + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6786724823295177398"><![CDATA[tmp = (individual.spouse_last_name + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e3db8949-176f-4771-86b2-255914b38107">
      <Description><![CDATA[Spouse Name: Last + First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13296768809795631107"><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8462502114038336842"><![CDATA[tmp = (individual.spouse_last_name + " " + individual.spouse_first_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3488444456154485606"><![CDATA[tmp = (individual.spouse_last_name + ' ' + individual.spouse_first_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4d1997d6-ab88-4ac5-b05b-78af7b385f80">
      <Description><![CDATA[Spouse Name: Last + Suffix + First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (individual.spouse_first_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17845668930546857406"><![CDATA[tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (individual.spouse_first_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11316474214711631818"><![CDATA[tmp = (individual.spouse_last_name + " " + individual.spouse_suffix + " " + individual.spouse_first_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1518395297726689510"><![CDATA[tmp = (individual.spouse_last_name + ' ' + individual.spouse_suffix + ' ' + individual.spouse_first_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="738ac467-3bad-4dd7-adbe-15d366ffb898">
      <Description><![CDATA[Spouse Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12785313491053080243"><![CDATA[tmp = individual.spouse_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8cf06216-253c-4803-a440-14a0b0f96893">
      <Description><![CDATA[Spouse Address: Apartment Number with "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11736615341418221382"><![CDATA[tmp = (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="09ee7797-8fc6-4f5a-b730-fdfd61601939">
      <Description><![CDATA[Spouse Address: Apartment Number only - no "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_apartment_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6976724706027731627"><![CDATA[tmp = individual.spouse_apartment_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="15ede7a9-1c13-4d05-8d28-10e3b3b451a8">
      <Description><![CDATA[Spouse Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1186168925073769088"><![CDATA[tmp = individual.spouse_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="de0265ad-2def-4597-9b11-660eb39c0899">
      <Description><![CDATA[Spouse Address: County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_county.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5712123286712001240"><![CDATA[tmp = individual.spouse_county.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cab2aaf4-da88-4010-8bba-2b8fb559bcbb">
      <Description><![CDATA[Spouse Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16752352625913741820"><![CDATA[tmp = individual.spouse_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1ddb2273-a463-4043-ad7a-21d3bf3e1b0f">
      <Description><![CDATA[Spouse Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17402187532404997038"><![CDATA[tmp = individual.spouse_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ed7e2bf1-cb33-4dc9-b87b-5f8a33909893">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="4403023469987171690"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df5d07fb-5f7e-4df2-822a-0de839b69cf2">
      <Description><![CDATA[Spouse Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="4403023469987171690"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3a0c3a8d-b82f-47ea-9551-67f196e200fc">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6969499531981107204"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1854597801118543762"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="9119830898861724639"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="877f494d-1c8c-46a5-943f-5294a2fc9f9c">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10161049966091865678"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="251338099473548466"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="14963066343497485076"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bf813542-3c90-4537-bb4c-e57c48eeca5c">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="4403023469987171690"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af724b68-8ee6-4556-909d-8646507dd411">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.spouse_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="3646056215133511342"><![CDATA[myMatches = myReg.exec(individual.spouse_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13534647875279165846"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="3982079859768055187"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1264158679934233261"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = individual.spouse_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2e2e628b-e96e-4df3-a310-edbbf21e3109">
      <Description><![CDATA[Spouse Address: Zip Code 5 digits|Spouse Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.spouse_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.spouse_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="18096980037373774350"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.spouse_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.spouse_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="238a0c8a-c772-425d-80e0-69a5d8647761">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + (individual.spouse_apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.spouse_apartment_number)).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="240887386247365491"><![CDATA[tmp = (individual.spouse_address + (individual.spouse_apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.spouse_apartment_number)).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b199fe4b-8421-4326-a2d3-e17e32182f57">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6539024826262492932"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f886c8b7-8db8-4ec6-9a07-59926c6d9af1">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11163539712421178035"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9fca1255-03e3-4929-a7b8-f1d37d0c5f47">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2751704601665150858"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="876e5068-e095-4cf4-9330-52b483166970">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City + State + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11033328540001127442"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="21b1deaa-adf9-44d0-9912-0c7656ea5863">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6644837020970684820"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b1e83738-64a1-4227-a0fd-cfcb0b01fa6d">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : (", " + (individual.spouse_city) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="5253615489828437829"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : (", " + (individual.spouse_city) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10006603236664986270"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : (", " + (individual.spouse_city)))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13722643943773586638"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : (', ' + (individual.spouse_city)))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="be3c75ab-975d-41ee-a53a-9f955fcc8ae0">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2819706698438432651"><![CDATA[tmp = (individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f1aa366f-439d-4bef-8bb2-04260f0bec62">
      <Description><![CDATA[Spouse Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9486044518081405270"><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="853b75e9-ec48-412b-ba19-9a91a8cb2b10">
      <Description><![CDATA[Spouse Address: City + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8921810193164977578"><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7f366c0f-8be9-4df5-81c0-440f630145fc">
      <Description><![CDATA[Spouse Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13001570813155535793"><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5e407aef-462e-456f-b83c-2b10e7c749a5">
      <Description><![CDATA[Spouse Address: City + County + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + (individual.spouse_county.trim().isEmpty() ? '' : individual.spouse_county + ', ') + individual.spouse_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7407732269536906558"><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + (individual.spouse_county.trim().isEmpty() ? '' : individual.spouse_county + ', ') + individual.spouse_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a7024492-3e6d-41ef-b258-32b6a158c449">
      <Description><![CDATA[Spouse Address: City + State + Zip + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip + ' ' + individual.spouse_county).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16564495403562195099"><![CDATA[tmp = ((individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip + ' ' + individual.spouse_county).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a0c65415-ce4c-4522-8415-c53c9163ca7a">
      <Description><![CDATA[Spouse Address: County + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseCounty</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.spouse_county.trim().isEmpty() ? '' : individual.spouse_county + ', ') + individual.spouse_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7338913295182375261"><![CDATA[tmp = ((individual.spouse_county.trim().isEmpty() ? '' : individual.spouse_county + ', ') + individual.spouse_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="85e8be74-10c9-4b3f-a82f-45764dfe9146">
      <Description><![CDATA[Spouse Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4421842190052586342"><![CDATA[tmp = (individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1b866d88-7803-481e-96df-c07217a27545">
      <Description><![CDATA[Spouse Address: Street Address + Apartment Number with "Apt. #" prefix + City + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseAprtmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_address + (individual.spouse_apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : ', ' + individual.spouse_city) + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18027423092700747217"><![CDATA[tmp = (individual.spouse_address + (individual.spouse_apartment_number.trim().isEmpty() ? '' : ' Apt. #' + individual.spouse_apartment_number) + (individual.spouse_city.trim().isEmpty() ? '' : ', ' + individual.spouse_city) + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="550d2f09-7736-4c33-acd0-56e0e500acc9">
      <Description><![CDATA[Spouse Phone: Home Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16654726380306697063"><![CDATA[tmp = individual.spouse_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a5537bb7-1504-4107-a43b-78a800eca8fb">
      <Description><![CDATA[Spouse Phone: Home Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8428910522584669407"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="49168eb1-8460-497a-bf76-e1ed40386081">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16700274155450708088"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6432307055206267024"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3224897153969205226"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="934ec3d1-99aa-4661-a7b1-cc4818c54052">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17577202112099350594"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13387370259153496753"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="664115287612408899"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c27218c8-377e-4d41-8c3c-12538db3f796">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1692565539445292377"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7324313927917373698"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3984219760012741036"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ebac980-3493-435b-9352-35fa69090a4c">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="18058824123238363117"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5606717752537406396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7912552004402076336"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="59967ba5-5965-448a-85cf-91dc70bc241f">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1693250265148282618"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12510087040939049439"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4434206008131485883"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3274b26f-b67e-4565-8818-aca9ac988c8c">
      <Description><![CDATA[Spouse Phone: Home Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10833938359531294131"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16304879563295765970"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4308550029098309681"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="05386b29-9f4e-4ec3-8bfa-fae32ea78ae9">
      <Description><![CDATA[Spouse Phone: Home Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6653673041204571673"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4773305405907280572"><![CDATA[myMatches = myReg.exec(individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6225796734216986480"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16216577964014197445"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7636052711183035882"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="01a69e43-8072-4808-b7c8-cba22cc00dd4">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code|Spouse Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11402225225216516100"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4155039524786490069"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1745675736176186571"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b36c5b95-4dcd-48fd-841e-f7f2f27cf77a">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code|Spouse Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10329380011147275212"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12705497009683492153"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13337780061189869636"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c57625e6-b889-4f73-9f57-bbd532996a34">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code in parenthesis|Spouse Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6760752047577555495"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2189622697188523514"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12361180936928109778"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="33afc0ca-e7ac-48be-b1f4-b7f6955f978a">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code in parenthesis|Spouse Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14774181201951291767"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17762496803441515731"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15043782128735570729"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a067501d-585c-45e0-87b9-18cf95688d5d">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code|Spouse Phone: Home Phone 3 digit exchange|Spouse Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3472899303566734200"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9ca79f5-320d-4338-ba82-ce0d2219484c">
      <Description><![CDATA[Spouse Phone: Home Phone Area Code in parenthesis|Spouse Phone: Home Phone 3 digit exchange|Spouse Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7012514223381541313"><![CDATA[condvar = (individual.spouse_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12769843001364564742"><![CDATA[condvar = (individual.spouse_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18275227385609038785"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9046478764738981097"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7208725337294609284"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.spouse_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c32bd181-990a-4a44-a36b-b6f168a33598">
      <Description><![CDATA[Spouse Phone: Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_work_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8252499762410286682"><![CDATA[tmp = individual.spouse_work_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="091c2593-a7cb-4f59-a11f-7ea6b3987ca2">
      <Description><![CDATA[Spouse Phone: Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="3841841462439980344"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d482ff80-67b2-4510-9cf7-7a41505f6495">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8507800360393474182"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11994759073727395722"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10245188805647700718"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a6c477b-8a8a-4a8b-a43c-d4221976bd31">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4018385124974513287"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4971455506157259288"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16156150816992187416"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="13cfb874-3683-4258-a1ea-1f17bbf29164">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6096038998489758429"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7481827439543855933"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4414963473356658935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="19f7c0c0-5a0e-46dd-ad25-5ffdfe280670">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5501428022689058489"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11868743724622223562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4163816280422825929"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7980efea-9c29-43d2-8d48-4ee115cfa8c9">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8570420125468486211"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7816323093449854730"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5404831572535137291"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8dd5f9bd-46fe-4f17-a8ba-2ca3b7693a38">
      <Description><![CDATA[Spouse Phone: Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15421720460022080433"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12020490587969429921"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4888836542392207741"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="338a6d41-3321-4c2d-b745-0b9efcf63092">
      <Description><![CDATA[Spouse Phone: Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="730928696870346090"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12164366368551818447"><![CDATA[myMatches = myReg.exec(individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9382558247646129903"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16470181915211945073"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7278594506037109226"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="09abd4c1-3ef3-4af0-8273-0a88c05f87f9">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code|Spouse Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="467241326867995156"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4620806009038897228"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11244164294490525836"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0d98e9bc-56ea-4fce-b78a-0b0030eeab9c">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code|Spouse Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3141234536353575326"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3093320529142273843"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17047123894312167072"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="11375935-0e93-4cdc-b43d-4f1d6f91758d">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code in parenthesis|Spouse Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17516442504503117795"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16751116076639094342"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5397706172322595607"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3053f093-2bf3-4ee0-811f-2d7fe0e46c35">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code in parenthesis|Spouse Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="663125119358003985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13418057530211318430"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5720090010442427250"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5f5285b8-e9ed-493d-96da-6b7307902a9b">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code|Spouse Phone: Work Phone 3 digit exchange|Spouse Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="9848501757352232570"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="523006e0-b8ca-4b71-8626-f0c1f476226a">
      <Description><![CDATA[Spouse Phone: Work Phone Area Code in parenthesis|Spouse Phone: Work Phone 3 digit exchange|Spouse Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1985091907094370060"><![CDATA[condvar = (individual.spouse_work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10895244904167629496"><![CDATA[condvar = (individual.spouse_work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10169656043009735945"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11458612197251927740"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="178181990902826001"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.spouse_work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c2f9a333-39c2-4248-bab2-002474c1b085">
      <Description><![CDATA[Spouse Phone: Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_mobile_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6629297649748217129"><![CDATA[tmp = individual.spouse_mobile_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c07b5e3a-bf3a-4d1d-9e2f-e54bb9ccd9f7">
      <Description><![CDATA[Spouse Phone: Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="11677652629961966906"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9604eafe-a5f0-492d-9951-4ca20a308025">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13359185285312435245"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11269934553714608822"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10886513904324654917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8e5159c2-ee90-4cb1-a0d0-9e9de74c61cf">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13608546388642841195"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17072048077307299598"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8728074895065319680"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0b21203a-472e-4419-b5d1-24cc19f10da7">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3031235227261240910"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7753092499215234032"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16171902282062191838"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8536f6d3-3293-41c2-bddf-448da3b0fd93">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11205464104548792755"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9456214337437258004"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17939005564573824145"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9e641eea-8ba6-4eab-877a-03d104812ff9">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5500559632843463718"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12910644641236479513"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13208409357147751873"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ff8cad8-e6ca-4930-a1eb-694ceedc2c26">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="185985629480786760"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9773854948215178674"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13540257523178479069"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="31b24b8c-f5e1-4f63-978c-0b92de59d16c">
      <Description><![CDATA[Spouse Phone: Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6095568957704799066"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11821584822822393180"><![CDATA[myMatches = myReg.exec(individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14038073901173591150"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8757737872513008493"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3241218451466795927"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fa498932-c042-4e21-9047-f3053e4b6cd3">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code|Spouse Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14811848508812926300"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2880933013310572835"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13088063955144749997"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="11802f27-fd28-476d-833d-28cef5c5acdf">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code|Spouse Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8982888021679081100"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17440531199784941361"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3252188553014505901"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="55299ca2-7c31-4fac-8250-ce9d6697597a">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code in parenthesis|Spouse Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8087404620009952851"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3053008548492534592"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8860551872599146797"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9671ac0c-5f92-46a4-a8fd-67c0912c9546">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code in parenthesis|Spouse Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8856965562886476605"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11722768635491929373"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7022102060336552134"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c95891a7-8b6a-4339-a14c-b9dbfd987e40">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code|Spouse Phone: Mobile Phone 3 digit exchange|Spouse Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="7363463759498161091"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6f5ac7de-4dd1-42d6-9ce7-68e78dc559b1">
      <Description><![CDATA[Spouse Phone: Mobile Phone Area Code in parenthesis|Spouse Phone: Mobile Phone 3 digit exchange|Spouse Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7956132750083015918"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17647025364347492685"><![CDATA[condvar = (individual.spouse_mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8288416882774951455"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13853916946611389093"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4740599794890739686"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.spouse_mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c0c01a57-f670-4b09-ac8a-5aca25e00899">
      <Description><![CDATA[Spouse Phone: Home/Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2c454c4a-8a4f-46e3-8fc9-11000f2e125f">
      <Description><![CDATA[Spouse Phone: Home/Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="32c7812c-c07f-44eb-b754-b3202278b7d8">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a66b2860-7274-409c-a144-4844e9a8c2ea">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df0b914d-bfc6-4dc2-89e4-71e3d3104da3">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="96b2392f-866c-4bcd-af8b-fd0468245ae3">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0a9b3988-27ff-4391-b20c-e4951069407a">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1b18e9bc-fdce-49e2-b88b-58c2eb99518c">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e61e6c1b-35b9-4c6e-845f-d67143bf6104">
      <Description><![CDATA[Spouse Phone: Home/Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="76b1fb12-39bd-4cc0-80d0-91c3767f2a39">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code|Spouse Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6f32db7b-6e18-4b5f-930b-e9ddc8790fca">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code|Spouse Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="cc6564b2-01f5-46ee-b472-17504f03dc07">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code in parenthesis|Spouse Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7f1c231e-1550-483d-a9da-f5c76c069d50">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code in parenthesis|Spouse Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="48b45198-6a18-4ed3-b3a6-d4721b099124">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code|Spouse Phone: Home/Work Phone 3 digit exchange|Spouse Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08d600a7-705b-400b-9c57-c5aca6462f4c">
      <Description><![CDATA[Spouse Phone: Home/Work Phone Area Code in parenthesis|Spouse Phone: Home/Work Phone 3 digit exchange|Spouse Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12817574688386520543"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="974c3c28-2915-4f1f-9e6e-1b7628ace7c3">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="29909bf5-90a0-41d3-8fa0-57d76f4d88ed">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6debbfad-ab35-493f-838d-7184a663e97b">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="83c7b8ce-b0f6-4e20-9843-0f7d2963c1cc">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c9e22891-d7b7-4acf-9ba9-21f0b8c78e55">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b74681df-917b-49f6-99b1-2287ab6d4dda">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="90fd9772-6dfc-4a23-ac28-42c508a228c4">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0d8a5cc7-fd7e-49f1-a84e-c22a8db3252d">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f45f306b-1d7b-4039-bc63-86a01f948390">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="353b131f-997b-47a3-bf57-896ec3c688f3">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code|Spouse Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="db27e1dc-f00c-455a-88e3-4acec6cd3c38">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code|Spouse Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="32058546-d645-4ecf-a777-8df7d04dbec3">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d6b181e0-98c5-447f-a834-94ddf901899d">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c6f20b1f-a42b-4cd9-b50b-4d7a3b2972c1">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code|Spouse Phone: Home/Mobile Phone 3 digit exchange|Spouse Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c90bd5c3-3c23-4bc5-91c8-6b779334563a">
      <Description><![CDATA[Spouse Phone: Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Home/Mobile Phone 3 digit exchange|Spouse Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="10300673108509393222"><![CDATA[tmp = (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d4acf07a-2d04-49fd-b24a-3b52b7e63821">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cd4b32d4-cf66-4d0f-9042-1052b403bd7c">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40fcb291-59cb-445d-9959-fd8e32c5cee0">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="74731463-48d1-403d-81de-4cd5b793e433">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aba328df-cbf2-4668-9995-a8eb0c4f4e29">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5b19d7fe-358f-4dd2-adb9-0cfd26df60a0">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a903a112-fdda-4d88-a179-f0c508b0863d">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8877dedd-2606-4da6-90e1-73d3dc4fc765">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1cec58e6-862c-4d6f-b3de-9f94b725359d">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="907a5f53-0f7e-4018-944e-754ac2b534ca">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="287eec5b-7d75-4b74-b706-685518b02ecb">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ceb03bae-247e-4da3-a4f3-f4f19d5c0fe4">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3a33b30e-6169-48fc-a5c1-60f47a420683">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="99ff98e4-78fd-40c6-a7c8-5504f50f443e">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange|Spouse Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a4b7d7af-9a46-4e71-b6e0-594cc967057a">
      <Description><![CDATA[Spouse Phone: Work/Home/Mobile Phone Area Code in parenthesis|Spouse Phone: Work/Home/Mobile Phone 3 digit exchange|Spouse Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_2">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_2">Individual.SpousePhone</Tag>
        <Tag var="box1_2">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_3">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_3">Individual.SpousePhone</Tag>
        <Tag var="box1_3">Individual.SpouseMobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9bfa7416-8572-4e32-bc4f-56dcdb7fc294">
      <Description><![CDATA[Spouse Name+Phone: [First+MI+Last+Suffix] + [Work/Home/Mobile Phone]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!individual.spouse_work_phone.trim().isEmpty())) {
    casetmp = individual.spouse_work_phone;
}
else if ((!individual.spouse_phone.trim().isEmpty())) {
    casetmp = individual.spouse_phone;
}
else {
    casetmp = individual.spouse_mobile_phone;
}
tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2221743428088907996"><![CDATA[if ((!individual.spouse_work_phone.trim().isEmpty())) {
    casetmp = individual.spouse_work_phone;
}
else if ((!individual.spouse_phone.trim().isEmpty())) {
    casetmp = individual.spouse_phone;
}
else {
    casetmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2208439608679230471"><![CDATA[tmp = ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2187444814005726570"><![CDATA[tmp = (individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name + " " + individual.spouse_suffix + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="17778570349381583700"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="608b1b63-e0c1-4854-9b0d-16da46dc1f6a">
      <Description><![CDATA[Spouse: Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10554890550318948759"><![CDATA[tmp = individual.spouse_fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6d878998-69f3-43d2-8013-5e42d34fbd12">
      <Description><![CDATA[Spouse Phone+Fax: Home Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17346689891181961299"><![CDATA[tmp = ("" + (individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="10124383928351159960"><![CDATA[tmp = (individual.spouse_phone + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="8880954335434847009"><![CDATA[tmp = (individual.spouse_phone + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e2a3546b-04e7-48c1-bd9f-4f5df5f2d59a">
      <Description><![CDATA[Spouse Phone+Fax: Work Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.spouse_work_phone) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1012182950748751411"><![CDATA[tmp = ("" + (individual.spouse_work_phone) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="2799256832100436368"><![CDATA[tmp = (individual.spouse_work_phone + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="15435362805681933873"><![CDATA[tmp = (individual.spouse_work_phone + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c06f625f-4f0f-4243-9239-bfde41a2357b">
      <Description><![CDATA[Spouse Phone+Fax: Mobile Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.spouse_mobile_phone) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12981491343190238877"><![CDATA[tmp = ("" + (individual.spouse_mobile_phone) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="3518088734502658138"><![CDATA[tmp = (individual.spouse_mobile_phone + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="7214164767553956517"><![CDATA[tmp = (individual.spouse_mobile_phone + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f134f06d-00d1-4eab-8b8d-f4123901cde5">
      <Description><![CDATA[Spouse Phone+Fax: [Home/Work] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4445831440859122568"><![CDATA[tmp = ("" + (individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="13069249673456834143"><![CDATA[tmp = ((individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone) + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="18369277284641613095"><![CDATA[tmp = ((individual.spouse_phone.trim().isEmpty() ? individual.spouse_work_phone : individual.spouse_phone) + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cf5b7673-4d95-4504-b0fe-239da5793f74">
      <Description><![CDATA[Spouse Phone+Fax: [Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15114244917133232993"><![CDATA[tmp = ("" + (individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="16316088309954301036"><![CDATA[tmp = ((individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone) + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="2494887851413499352"><![CDATA[tmp = ((individual.spouse_phone.trim().isEmpty() ? individual.spouse_mobile_phone : individual.spouse_phone) + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a588fb11-8663-43fe-8b47-4a049560a347">
      <Description><![CDATA[Spouse Phone+Fax: [Work/Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpousePhone</Tag>
        <Tag var="box1_1">Individual.SpouseWorkPhone</Tag>
        <Tag var="box1_1">Individual.SpouseMobilePhone</Tag>
        <Tag var="box1_1">Individual.SpouseFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}
tmp = tmp.toString().trim();
tmp = ("" + (tmp) + "  " + (individual.spouse_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15762799324529818774"><![CDATA[if (!individual.spouse_work_phone.trim().isEmpty()) {
    tmp = individual.spouse_work_phone;
}
else if (!individual.spouse_phone.trim().isEmpty()) {
    tmp = individual.spouse_phone;
}
else {
    tmp = individual.spouse_mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15144862641499811054"><![CDATA[tmp = ("" + (tmp) + "  " + (individual.spouse_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="17288229540039617704"><![CDATA[tmp = (tmp + "  " + individual.spouse_fax).trim();]]></JSExpression>
        <JSExpression hash="11140901873731526486"><![CDATA[tmp = (tmp + '  ' + individual.spouse_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1469d56c-8a94-4c25-83c2-50b2f5712dd3">
      <Description><![CDATA[Spouse SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17587578581976677923"><![CDATA[tmp = individual.spouse_ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d74fd5fe-0c40-4634-9334-ccd2a4cd6421">
      <Description><![CDATA[Spouse SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="14493603835526431693"><![CDATA[tmp = individual.spouse_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14340405419490527820"><![CDATA[tmp = individual.spouse_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ae384b78-da1a-40f3-8f7b-bd98155aa44d">
      <Description><![CDATA[Spouse SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_ssn.delete(/[^0-9]/g).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13018154159236577077"><![CDATA[tmp = individual.spouse_ssn.delete(/[^0-9]/g).toString().trim();]]></JSExpression>
        <JSExpression hash="573697087973727089"><![CDATA[tmp = individual.spouse_ssn.delete(/\-/g).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d33cb026-021b-41e1-a3f3-0c1352fe22fe">
      <Description><![CDATA[Spouse SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12591699940506912571"><![CDATA[tmp = individual.spouse_ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8ffc3d2-980b-4d73-be57-c7f871d37dbd">
      <Description><![CDATA[Spouse SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = individual.spouse_ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14493603835526431693"><![CDATA[tmp = individual.spouse_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14340405419490527820"><![CDATA[tmp = individual.spouse_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="833578ec-34d5-44cf-a42f-35f71e2548a0">
      <Description><![CDATA[Spouse SSN: First 3 digits|Spouse SSN: Next 2 digits|Spouse SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
        <Tag var="box1_2">Individual.SpouseSSN</Tag>
        <Tag var="box1_3">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8955130355841989495"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="2031756081516997559"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="936ddb75-6f1d-44e8-80fc-135088e1aec3">
      <Description><![CDATA[Spouse: Occupation]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseOccupation</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_occupation.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14479706626773556597"><![CDATA[tmp = individual.spouse_occupation.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fed8604b-8e9b-49c0-82cf-9e9671da2952">
      <Description><![CDATA[Spouse: School Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseSchoolCode</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_school_code.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6381699979611645835"><![CDATA[tmp = individual.spouse_school_code.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5e7bf261-0032-4393-bed3-aaf4a1ad307a">
      <Description><![CDATA[Spouse: Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseEmail</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.spouse_email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10520693957750097601"><![CDATA[tmp = individual.spouse_email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="19aa0d96-ea74-46a5-a7ae-be1b2b5bce0c">
      <Description><![CDATA[Spouse: Blind Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseBlind</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.spouse_blind.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6400967496837398981"><![CDATA[if (!individual.spouse_blind.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="be5162c4-c2c0-4394-94f8-fbb754daedc2">
      <Description><![CDATA[Spouse: 65+ Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Spouse65Plus</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.spouse_65_plus.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="618069547061298367"><![CDATA[if (!individual.spouse_65_plus.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="69bebab2-b054-434b-842c-72b0eca56d08">
      <Description><![CDATA[Spouse - Name+Address: First + Middle Initial + Last + Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="492067580544120489"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c72aa3d4-a3b5-41d2-bc17-33a8ed0f4a9a">
      <Description><![CDATA[Spouse - Name+Address: First + Middle Initial + Last + Suffix + Street Address + Apartment Number with "Apt. #" prefix + City + State + Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
        <Tag var="box1_1">Individual.SpouseAddress</Tag>
        <Tag var="box1_1">Individual.SpouseApartmentNumber</Tag>
        <Tag var="box1_1">Individual.SpouseCity</Tag>
        <Tag var="box1_1">Individual.SpouseState</Tag>
        <Tag var="box1_1">Individual.SpouseZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix + ' ' + individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12889066011729350566"><![CDATA[tmp = (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix + ' ' + individual.spouse_address + ' ' + (individual.spouse_apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.spouse_apartment_number + ' ') + (individual.spouse_city.trim().isEmpty() ? '' : individual.spouse_city + ', ') + individual.spouse_state + ' ' + individual.spouse_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9a1a57d0-0791-40d2-9e78-5e37fb4e69f3">
      <Description><![CDATA[Individual + Spouse Name (if Joint): First + Middle Initial + Last (& Spouse First + Spouse Middle Initial + Spouse Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "  " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13051303676838140553"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "  " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4078851684647645373"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial + " " + individual.last_name) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial + "  " + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6986408557193998670"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial + '  ' + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af3bef2b-cc04-4d55-89d6-29e3e168066a">
      <Description><![CDATA[Individual + Spouse Name (if Spouse First Name): First + Middle Initial + Last (& Spouse First + Spouse Middle Initial + Spouse Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15667021739545602123"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13407567311382926139"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial + " " + individual.last_name) + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10664177010189640154"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name) + (individual.spouse_first_name.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9973bd3-ca8c-4e9a-a8dc-c258113f4cf9">
      <Description><![CDATA[Individual + Spouse Name (if Spouse First Name): First + Middle Initial (& Spouse First + Spouse Middle Initial + (Spouse Last (if different)) + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "  " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9034801026887179593"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "  " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="18387430802662719836"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial) + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial + "  " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)))) + (" " + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10462530281442842457"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial) + (individual.spouse_first_name.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial + '  ' + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? '' : individual.spouse_last_name)))) + (' ' + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="23744af6-44ba-41f4-ad19-15fde1b57b5a">
      <Description><![CDATA[Individual + Spouse Name (if Joint): First + Middle Initial + Last + Suffix (& Spouse First + Spouse Middle Initial + Spouse Last + Spouse Suffix)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="8410829527490385435"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9239701682490710532"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial + " " + individual.last_name + " " + individual.suffix) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name + " " + individual.spouse_suffix))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="14405973132310835078"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e44d0d6-51a9-4799-90b2-3ee3ed274652">
      <Description><![CDATA[Individual + Spouse Name (if Spouse First Name): First + Middle Initial + Last + Suffix (& Spouse First + Spouse Middle Initial + Spouse Last + Spouse Suffix)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="7791195058311335837"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1410566876677021320"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial + " " + individual.last_name + " " + individual.suffix) + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial + " " + individual.spouse_last_name + " " + individual.spouse_suffix))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9720608454261144775"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix) + (individual.spouse_first_name.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ' + individual.spouse_last_name + ' ' + individual.spouse_suffix))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0a3a6b56-da68-4e07-8ee6-47f606d64022">
      <Description><![CDATA[Individual + Spouse Name (if Joint): First + Middle Initial (& Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="14529582946077543659"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3343751776462995831"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6755786295917170809"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a4cea1b6-2b27-4ed3-986b-f6f16daa9d32">
      <Description><![CDATA[Individual + Spouse Name (if Joint): First + Middle Initial (& Spouse First + Spouse Middle Initial) + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="2194068042399044279"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12740377559769360661"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial)) + (" " + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12495385775097887956"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial)) + (' ' + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="826b22b6-0dde-4790-b2da-2113d09c8cdb">
      <Description><![CDATA[Individual + Spouse Name (if Joint): First + Middle Initial (& Spouse First + (Spouse Last (if different))) + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="11903239009494082713"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + "")) + (" " + (individual.last_name) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6578066889103035416"><![CDATA[tmp = ((individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)))) + (" " + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8466629208503159768"><![CDATA[tmp = ((individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? '' : individual.spouse_last_name)))) + (' ' + individual.last_name)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="02b1fdd3-faf3-4422-80e4-cf3138b8d0e2">
      <Description><![CDATA[Individual + Spouse Name (if Spouse First Name): First + Last (& Spouse First + Spouse Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.last_name) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="947788607413184782"><![CDATA[tmp = (("" + (individual.first_name) + " " + (individual.last_name) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_last_name) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1950156553105206530"><![CDATA[tmp = ((individual.first_name + " " + individual.last_name) + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="131897729415763001"><![CDATA[tmp = ((individual.first_name + ' ' + individual.last_name) + (individual.spouse_first_name.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_last_name))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="933e4709-4d88-4e07-9d1c-4e3353357037">
      <Description><![CDATA[Individual + Spouse Name (if Joint): Last + First + Middle Initial (& Spouse Last + Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="16750894041323767030"><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12270770579888563646"><![CDATA[tmp = ((individual.last_name + " " + individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_last_name + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11719430328595202719"><![CDATA[tmp = ((individual.last_name + ' ' + individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_last_name + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="16e6d3a1-1469-40c2-a557-c37b5ac46802">
      <Description><![CDATA[Individual + Spouse Name (if Joint): Last + First + Middle Initial (& (Spouse Last (if different)) + Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1425895538979953797"><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8425725515296340063"><![CDATA[tmp = ((individual.last_name + " " + individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? "" : individual.spouse_last_name)) + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="14339405928846847759"><![CDATA[tmp = ((individual.last_name + ' ' + individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + ((individual.last_name.trim().toUpperCase().eql(individual.spouse_last_name.trim().toUpperCase()) ? '' : individual.spouse_last_name)) + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a0065080-7717-477e-88ba-9f97c13b7e44">
      <Description><![CDATA[Individual + Spouse Name (if Joint): Last + First + Middle Initial (& Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="5536266016272232506"><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11780649757217964027"><![CDATA[tmp = ((individual.last_name + " " + individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7221007313881129152"><![CDATA[tmp = ((individual.last_name + ' ' + individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8a9bb634-65c1-49af-83d0-84136a3ca77e">
      <Description><![CDATA[Individual + Spouse Name (if Spouse First Name): Last + First + Middle Initial (& Spouse Last + Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17408239118581055699"><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12969270189911859323"><![CDATA[tmp = ((individual.last_name + " " + individual.first_name + " " + individual.middle_initial) + (individual.spouse_first_name.trim().isEmpty() ? '' : (" & " + individual.spouse_last_name + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12166214971864913874"><![CDATA[tmp = ((individual.last_name + ' ' + individual.first_name + ' ' + individual.middle_initial) + (individual.spouse_first_name.trim().isEmpty() ? '' : (' & ' + individual.spouse_last_name + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a9c893a4-9c85-4792-a129-daacc2bc65f5">
      <Description><![CDATA[Individual + Spouse Name (if Joint): Last + Suffix + First + Middle Initial (& Spouse Last + Spouse Suffix + Spouse First + Spouse Middle Initial)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseSuffix</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.suffix) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="725270137910095640"><![CDATA[tmp = (("" + (individual.last_name) + " " + (individual.suffix) + " " + (individual.first_name) + " " + (individual.middle_initial) + "") + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_last_name) + " " + (individual.spouse_suffix) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3270059575837103076"><![CDATA[tmp = ((individual.last_name + " " + individual.suffix + " " + individual.first_name + " " + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_last_name + " " + individual.spouse_suffix + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2810921670160240348"><![CDATA[tmp = ((individual.last_name + ' ' + individual.suffix + ' ' + individual.first_name + ' ' + individual.middle_initial) + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_last_name + ' ' + individual.spouse_suffix + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="91079ba5-224a-423d-bb68-395b216ad97d">
      <Description><![CDATA[SSN: Individual + Spouse]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (individual.ssn) + " " + (individual.spouse_ssn) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6983354134659433265"><![CDATA[tmp = ("" + (individual.ssn) + " " + (individual.spouse_ssn) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12207011232907509276"><![CDATA[tmp = (individual.ssn + " " + individual.spouse_ssn).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8362442815251744366"><![CDATA[tmp = (individual.ssn + ' ' + individual.spouse_ssn).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="06de817c-d0d5-47d8-aa93-835ca1b0d87b">
      <Description><![CDATA[SSN: Individual + Spouse (if joint)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SSN</Tag>
        <Tag var="box1_1">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.ssn + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_ssn) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1959846168430702314"><![CDATA[tmp = (individual.ssn + (individual.married_joint.trim().isEmpty() ? '' : (" & " + (individual.spouse_ssn) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2028442934187233772"><![CDATA[tmp = (individual.ssn + (individual.married_joint.trim().isEmpty() ? '' : (" & " + individual.spouse_ssn))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1887422078162695661"><![CDATA[tmp = (individual.ssn + (individual.married_joint.trim().isEmpty() ? '' : (' & ' + individual.spouse_ssn))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="966a3866-39ae-4d64-a1ea-87558b33126c">
      <Description><![CDATA[NAME + SSN: Spouse + SSN (if joint)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.SpouseLastName</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_2">Individual.SpouseSSN</Tag>
        <Tag var="box1_3">Individual.SpouseSSN</Tag>
        <Tag var="box1_4">Individual.SpouseSSN</Tag>
      </TagMap>
      <JS><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                myMatches = null;
            }]]></JS>
      <JSExpression>
        <JSExpression hash="11664248239616983094"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
        <JSExpression hash="9509179342846558017"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = (individual.spouse_last_name + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial).squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
        <JSExpression hash="1545320796257719247"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = (individual.spouse_last_name + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial).squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/[^0-9]/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
        <JSExpression hash="18370190188102592356"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = ("" + (individual.spouse_last_name) + " " + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + "").squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/\-/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
        <JSExpression hash="15290443475552914316"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = (individual.spouse_last_name + " " + individual.spouse_first_name + " " + individual.spouse_middle_initial).squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/\-/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
        <JSExpression hash="13551855153276714874"><![CDATA[if (!(individual.married_joint + individual.married_separate).toString().trim().isEmpty()) {
                tmp = (individual.spouse_last_name + ' ' + individual.spouse_first_name + ' ' + individual.spouse_middle_initial).squeeze(' ').toString().trim();
                if (!tmp.trim().isEmpty()) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp);
                }
                //
                // SSN broken into 3 boxes:
                //
                if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.spouse_ssn.delete(/\-/g))) != null) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[3]);
                }
                
            }]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="68720d73-3831-49ae-8085-e68b16137ced">
      <Description><![CDATA[Business Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2431771465846643546"><![CDATA[tmp = individual.business_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1c2e45c0-8f94-4812-a5ef-c578e0581ea5">
      <Description><![CDATA[Business Address: Address 1]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8147548945195884057"><![CDATA[tmp = individual.business_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="72333c4a-0cc6-45b2-be08-e62610d0ea6d">
      <Description><![CDATA[Business Address: Address 2]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9967583842157398464"><![CDATA[tmp = individual.business_address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d262a928-8310-46a6-984b-fb627a6c6070">
      <Description><![CDATA[Business Address: Address 1 + Address 2]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18286867005758905018"><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1d952cfd-486c-4cd4-8fae-38186a2affa1">
      <Description><![CDATA[Business Address: Address 1 + Address 2 + City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4500184535238401090"><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2c5d5383-8354-4579-9bb1-d4eed3c765f9">
      <Description><![CDATA[Business Address: Address 1 + Address 2 + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10917781723303247766"><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="02532a18-d58a-47d9-9344-ba83ce8d2ca7">
      <Description><![CDATA[Business Address: Address 1 + Address 2 + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9789709518874767140"><![CDATA[tmp = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="77ba6eba-c05f-419d-a399-ac6e2bbd2ba3">
      <Description><![CDATA[Business Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17438007399973238234"><![CDATA[tmp = individual.business_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9dd19040-a2ad-4996-bfba-4c599e5aa800">
      <Description><![CDATA[Business Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4729791468294447583"><![CDATA[tmp = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="470707df-6b01-422e-ba50-a4af54297128">
      <Description><![CDATA[Business Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9616265762005126564"><![CDATA[tmp = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="614e33bf-78f0-45a7-9915-889789a8dc61">
      <Description><![CDATA[Business Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9974657367660871014"><![CDATA[tmp = individual.business_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="01658dd7-63c5-4b3a-b990-21182e81b564">
      <Description><![CDATA[Business Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13822700137057854125"><![CDATA[tmp = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3a96986e-617f-422d-a2d5-391642ae8aeb">
      <Description><![CDATA[Business Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3247589175030069863"><![CDATA[tmp = individual.business_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d2802406-9b20-48c9-b2b5-5cf2486c3813">
      <Description><![CDATA[Business Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747240231157308327"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="56c03459-3817-4238-8ed5-264979fcffb8">
      <Description><![CDATA[Business Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747240231157308327"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="11fb25b3-543f-40f0-8ab1-72fb999482a1">
      <Description><![CDATA[Business Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="586129662245452096"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8823459379068407346"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="17719931199132201470"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cb1efaa5-9e90-42e8-9597-7c5b42d6c5db">
      <Description><![CDATA[Business Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7776476351529619781"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11856883818097092902"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1243231836239970260"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7561e27e-5a00-4324-8669-47733dc6500f">
      <Description><![CDATA[Business Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747240231157308327"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="07c199d4-c084-4b97-a71b-e48c3f50e458">
      <Description><![CDATA[Business Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.business_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9478968026888357511"><![CDATA[myMatches = myReg.exec(individual.business_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12723433212800295487"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="4984933383191041321"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12677433690423724476"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = individual.business_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f92fee52-12e1-4504-b73a-8187a3fa1199">
      <Description><![CDATA[Business Address: Zip Code 5 digits|Business Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.business_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.business_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="17023434510361221738"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(individual.business_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = individual.business_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb423995-8d9f-44f4-b811-ddba65dec95a">
      <Description><![CDATA[Business Name + Address 1 + Address 2 + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessName</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_name + ' ' + individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2146112998232588826"><![CDATA[tmp = (individual.business_name + ' ' + individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f890a3de-4ef2-4538-8594-32e688b52299">
      <Description><![CDATA[Phone: Business Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7014077549323609207"><![CDATA[tmp = individual.business_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0190f3e8-2139-466b-94e6-56b5654c19f8">
      <Description><![CDATA[Phone: Business Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17270088496392905873"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3ebdddfd-32bb-468d-8367-fa3add65a10d">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13262369193146959932"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17732818178229771390"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11898743956511178705"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="840e5468-2754-471c-8523-91e88e0bcd32">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2143215542626138921"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5178002787256563886"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="889768320307560368"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ec4e5e1b-5d8b-4b67-b3e9-eed320cf635e">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7966970517530438549"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8617750635542635130"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11910290833851491828"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7119e14b-2d66-4acc-8954-d13e1c2a90bc">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2293801496827691888"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1264958712547147956"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="971263255991097440"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="942c8f72-3123-4210-afe0-d7e3955367a0">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14559291306050523150"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14653808142102426638"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10344823492350002144"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f05775f1-d9f1-4a45-89a1-03cbcf6e32a5">
      <Description><![CDATA[Phone: Business Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12994367309257697896"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2982738513973781168"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17205976441081339740"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d6c18350-3b25-4131-8508-1da1fe676e89">
      <Description><![CDATA[Phone: Business Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16999437572262698796"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5303873196990963625"><![CDATA[myMatches = myReg.exec(individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13814396302890920590"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13200709169635109025"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14181342360868341802"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d2219dde-d5a9-400c-b792-b6862f38bd55">
      <Description><![CDATA[Phone: Business Phone Area Code|Phone: Business Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15444115752254147271"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2392488974402425501"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11719910064838206139"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="76d9091a-2c12-48dd-a033-2fa58ad0b3f3">
      <Description><![CDATA[Phone: Business Phone Area Code|Phone: Business Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8270789885473021807"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12143419789757580243"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12305221406439555394"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="fb6f42ca-a4f1-465a-9bd0-9451126c5bd1">
      <Description><![CDATA[Phone: Business Phone Area Code in parenthesis|Phone: Business Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1889173762701500499"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13066066970566715943"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3000851156329305682"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9ecd8612-bb0a-4204-ba24-f148abff6350">
      <Description><![CDATA[Phone: Business Phone Area Code in parenthesis|Phone: Business Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17480969643348335444"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10653334929184610698"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4555258390982702841"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5847040f-9d1c-49a5-bd92-e9c6e32d4880">
      <Description><![CDATA[Phone: Business Phone Area Code|Phone: Business Phone 3 digit exchange|Phone: Business Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="18388641089999504271"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fdcffab1-c0e0-4e59-9ca9-d520ed4e4f6e">
      <Description><![CDATA[Phone: Business Phone Area Code in parenthesis|Phone: Business Phone 3 digit exchange|Phone: Business Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (individual.business_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2427794473309847298"><![CDATA[condvar = (individual.business_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4309520264300792379"><![CDATA[condvar = (individual.business_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15182146248799278686"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7537869302864769562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17831662581903209840"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = individual.business_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f5f2df3c-7925-405f-908a-18793c3f0e44">
      <Description><![CDATA[Name+Phone: Business Name + Business Phone Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessName</Tag>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Business Name and Business Phone number in one box:
//
tmp = ("" + (individual.business_name) + " " + (individual.business_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12298714216823099117"><![CDATA[tmp = ("" + (individual.business_name) + " " + (individual.business_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3070853960308996572"><![CDATA[tmp = (individual.business_name + " " + individual.business_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10171398870021443953"><![CDATA[tmp = (individual.business_name + ' ' + individual.business_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b85e92c1-ac15-4449-ac13-4259426dfac8">
      <Description><![CDATA[Business Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessFax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="375689237271062431"><![CDATA[tmp = individual.business_fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6cf608ef-f6c6-4c0a-abe3-40ccc2e7994a">
      <Description><![CDATA[Phone+Fax: Business Phone + Business Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.BusinessFax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (individual.business_phone) + "  " + (individual.business_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9582951764739473257"><![CDATA[tmp = ("" + (individual.business_phone) + "  " + (individual.business_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="14530454635190582575"><![CDATA[tmp = (individual.business_phone + "  " + individual.business_fax).trim();]]></JSExpression>
        <JSExpression hash="17016552663094393982"><![CDATA[tmp = (individual.business_phone + '  ' + individual.business_fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0ec61e9-83fd-4e3f-adad-12e109569d65">
      <Description><![CDATA[FEIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17895269082123702602"><![CDATA[tmp = individual.fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3f1130d2-8484-47a8-82ba-da889ca55705">
      <Description><![CDATA[FEIN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4032180406837617510"><![CDATA[tmp = individual.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4769738527478830059"><![CDATA[tmp = individual.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="48c8bfcc-c61b-411e-aea8-50006868f9d5">
      <Description><![CDATA[FEIN: Space instead of a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10312179957424736047"><![CDATA[tmp = individual.fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9aed9c4-9b5d-427e-81a7-64bd620abba1">
      <Description><![CDATA[FEIN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = individual.fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4032180406837617510"><![CDATA[tmp = individual.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4769738527478830059"><![CDATA[tmp = individual.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="77d7473d-5825-4f99-afa6-156d1d9c657f">
      <Description><![CDATA[FEIN: First 2 digits|FEIN: Next 7 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="287983527830942146"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="12357915651649468247"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="01e53634-8705-458c-8609-c2acb53532bd">
      <Description><![CDATA[Business Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessEmail</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.business_email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17314989793780285057"><![CDATA[tmp = individual.business_email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8b1d8cb5-5ca8-441b-80dd-f656ed95621a">
      <Description><![CDATA[Phone: Business/Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="63113fd1-231f-4089-86cd-2aa288909194">
      <Description><![CDATA[Phone: Business/Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f96cbe95-aab3-48af-b575-0c35c7cfb5f9">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="633f0d8d-af59-4249-b623-d1728954b5d9">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="10ecb5d5-07bf-4e73-9b25-4b113b4b5496">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="06abba53-b8c0-4291-ba83-22cae20b9ec9">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cd294d9e-d0af-4342-b87b-179f37da76cf">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b551069c-e461-47fc-8164-350ce7f18543">
      <Description><![CDATA[Phone: Business/Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="db0a1bad-9ac9-4583-921c-7c8a73966565">
      <Description><![CDATA[Phone: Business/Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5b790fd6-e109-483c-a90c-11229115f3f4">
      <Description><![CDATA[Phone: Business/Work Phone Area Code|Phone: Business/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0fb8e775-b2be-4fd9-afa1-6de3481ad259">
      <Description><![CDATA[Phone: Business/Work Phone Area Code|Phone: Business/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="92a84449-151d-4d1c-bdbd-3682ada73852">
      <Description><![CDATA[Phone: Business/Work Phone Area Code in parenthesis|Phone: Business/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f8416670-1ace-4dbf-9761-4097f6f03310">
      <Description><![CDATA[Phone: Business/Work Phone Area Code in parenthesis|Phone: Business/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ecc19e73-b018-466e-b9ca-c99094f9bf1d">
      <Description><![CDATA[Phone: Business/Work Phone Area Code|Phone: Business/Work Phone 3 digit exchange|Phone: Business/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a39dcd9a-0635-48c7-b776-7d3a6b49a27f">
      <Description><![CDATA[Phone: Business/Work Phone Area Code in parenthesis|Phone: Business/Work Phone 3 digit exchange|Phone: Business/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="12278035493561740480"><![CDATA[tmp = (individual.business_phone.trim().isEmpty() ? individual.work_phone : individual.business_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="36d2d310-04e7-4157-8ff0-c0a65f1dc03b">
      <Description><![CDATA[Business Name else (Individual + Spouse Name (if Joint): First + Middle Initial (& Spouse First + Spouse Middle Initial) + Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.SpouseFirstName</Tag>
        <Tag var="box1_1">Individual.SpouseMiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.BusinessName</Tag>
      </TagMap>
      <JS><![CDATA[//
// Filing joint - IF no business name, first, middle and spouse if joint, then last name ELSE business name:
//
if (individual.business_name.trim().isEmpty()) {
    tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " ") + (individual.married_joint.trim().isEmpty() ? "" : "& " + ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " ")) + ("" + (individual.last_name) + "")).squeeze(' ');
}
else {
    tmp = individual.business_name;
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="5385648111166354467"><![CDATA[if (individual.business_name.trim().isEmpty()) {
    tmp = (("" + (individual.first_name) + " " + (individual.middle_initial) + " ") + (individual.married_joint.trim().isEmpty() ? "" : "& " + ("" + (individual.spouse_first_name) + " " + (individual.spouse_middle_initial) + " ")) + ("" + (individual.last_name) + "")).squeeze(' ');
}
else {
    tmp = individual.business_name;
}]]></JSExpression>
        <JSExpression hash="2249017854371331112"><![CDATA[if (individual.business_name.trim().isEmpty()) {
    tmp = ((individual.first_name + " " + individual.middle_initial + " ") + (individual.married_joint.trim().isEmpty() ? "" : "& " + "" + (individual.spouse_first_name + " " + individual.spouse_middle_initial + " ")) + (individual.last_name)).squeeze(' ');
}
else {
    tmp = individual.business_name;
}]]></JSExpression>
        <JSExpression hash="13356780793999045608"><![CDATA[if (individual.business_name.trim().isEmpty()) {
    tmp = ((individual.first_name + ' ' + individual.middle_initial + ' ') + (individual.married_joint.trim().isEmpty() ? '' : '& ' + '' + (individual.spouse_first_name + ' ' + individual.spouse_middle_initial + ' ')) + (individual.last_name)).squeeze(' ');
}
else {
    tmp = individual.business_name;
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6cea55f2-deae-4326-a9a7-bf967ffaa171">
      <Description><![CDATA[Sole Proprietor Name: Business else First + Middle Initial + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.BusinessName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + "").squeeze(' ') : individual.business_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="18109078188396026445"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + "").squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="9678235323847565382"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.first_name + " " + individual.middle_initial + "  " + individual.last_name).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="11944695269504291039"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.first_name + ' ' + individual.middle_initial + '  ' + individual.last_name).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e2d514db-2100-4b9c-86d9-b73662b3640b">
      <Description><![CDATA[Sole Proprietor Name: Business else First + Middle Initial + Last + Suffix]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.BusinessName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + " " + (individual.suffix) + "").squeeze(' ') : individual.business_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6849471167302797328"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + " " + (individual.suffix) + "").squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="10126192525175596000"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.first_name + " " + individual.middle_initial + "  " + individual.last_name + " " + individual.suffix).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="6496689970549643717"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.first_name + ' ' + individual.middle_initial + '  ' + individual.last_name + ' ' + individual.suffix).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7d708df5-1691-4c8c-ba8e-d4e22eb4ca5f">
      <Description><![CDATA[Sole Proprietor Name: Business else Last + First + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.BusinessName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.last_name) + " " + (individual.first_name) + "  " + (individual.middle_initial) + "").squeeze(' ') : individual.business_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="16898069942251201651"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? ("" + (individual.last_name) + " " + (individual.first_name) + "  " + (individual.middle_initial) + "").squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="1579704433539341437"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.last_name + " " + individual.first_name + "  " + individual.middle_initial).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="4724290531185488254"><![CDATA[tmp = (individual.business_name.trim().isEmpty() ? (individual.last_name + ' ' + individual.first_name + '  ' + individual.middle_initial).squeeze(' ') : individual.business_name).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9f380ae4-4873-4a18-b53b-c505cbda0145">
      <Description><![CDATA[Address 1|Address 2|City|State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_2">Individual.ApartmentNumber</Tag>
        <Tag var="box1_2">Individual.BusinessAddress2</Tag>
        <Tag var="box1_3">Individual.City</Tag>
        <Tag var="box1_3">Individual.BusinessCity</Tag>
        <Tag var="box1_4">Individual.State</Tag>
        <Tag var="box1_4">Individual.BusinessState</Tag>
        <Tag var="box1_5">Individual.Zip</Tag>
        <Tag var="box1_5">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city = individual.business_city.trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}
if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}
if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city);
}
if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", zip);
}]]></JS>
      <JSExpression hash="16991533625863030564"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city = individual.business_city.trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="2898251049983464885"><![CDATA[if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}]]></JSExpression>
      <JSExpression hash="4204275578814539408"><![CDATA[if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city);
}]]></JSExpression>
      <JSExpression hash="7328523480721037561"><![CDATA[if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb846374-5701-4597-9f0c-115b99d3301d">
      <Description><![CDATA[Address 1|Address 2|City|State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_2">Individual.ApartmentNumber</Tag>
        <Tag var="box1_2">Individual.BusinessAddress2</Tag>
        <Tag var="box1_3">Individual.City</Tag>
        <Tag var="box1_3">Individual.BusinessCity</Tag>
        <Tag var="box1_4">Individual.State</Tag>
        <Tag var="box1_4">Individual.BusinessState</Tag>
        <Tag var="box1_4">Individual.Zip</Tag>
        <Tag var="box1_4">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city = individual.business_city.trim();
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}
if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city);
}
if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state_zip);
}]]></JS>
      <JSExpression hash="12754496217674130867"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city = individual.business_city.trim();
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="2898251049983464885"><![CDATA[if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}]]></JSExpression>
      <JSExpression hash="4204275578814539408"><![CDATA[if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city);
}]]></JSExpression>
      <JSExpression hash="972658116221492150"><![CDATA[if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df4f3dab-6958-449a-8d76-a6096ec02cfb">
      <Description><![CDATA[Address 1|Address 2|City + State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_2">Individual.ApartmentNumber</Tag>
        <Tag var="box1_2">Individual.BusinessAddress2</Tag>
        <Tag var="box1_3">Individual.City</Tag>
        <Tag var="box1_3">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
        <Tag var="box1_4">Individual.Zip</Tag>
        <Tag var="box1_4">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city_state = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city_state = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}
if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}
if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}
if (!city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", zip);
}]]></JS>
      <JSExpression hash="7213777846361945225"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city_state = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city_state = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="2898251049983464885"><![CDATA[if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}]]></JSExpression>
      <JSExpression hash="4204275578814539408"><![CDATA[if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}]]></JSExpression>
      <JSExpression hash="17239464513958915714"><![CDATA[if (!city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="488823c3-7364-44dd-84bc-7ede94aeeccf">
      <Description><![CDATA[Address 1|Address 2|City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_2">Individual.ApartmentNumber</Tag>
        <Tag var="box1_2">Individual.BusinessAddress2</Tag>
        <Tag var="box1_3">Individual.City</Tag>
        <Tag var="box1_3">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}
if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}
if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state_zip);
}]]></JS>
      <JSExpression hash="13119977134495599014"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr1 = individual.address.trim();
    addr2 = (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr1 = individual.business_address.trim();
    addr2 = individual.business_address2.trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="2898251049983464885"><![CDATA[if (!addr1.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr1);
}]]></JSExpression>
      <JSExpression hash="4204275578814539408"><![CDATA[if (!addr2.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", addr2);
}]]></JSExpression>
      <JSExpression hash="11130827813581741562"><![CDATA[if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e7301d0f-d86c-40c6-aa3c-a6f3e7c1548a">
      <Description><![CDATA[Address|Apartment Number only - no "Apt. #" prefix|City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.ApartmentNumber</Tag>
        <Tag var="box1_3">Individual.City</Tag>
        <Tag var="box1_3">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = individual.address.trim();
    apt = individual.apartment_number.trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    apt = '';
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!apt.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", apt);
}
if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state_zip);
}]]></JS>
      <JSExpression hash="8239659444057259418"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = individual.address.trim();
    apt = individual.apartment_number.trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    apt = '';
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="4242270593413891764"><![CDATA[if (!apt.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", apt);
}]]></JSExpression>
      <JSExpression hash="11130827813581741562"><![CDATA[if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", city_state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="96c68c84-f85d-4da9-9182-278e3004a43f">
      <Description><![CDATA[Address|City|County|State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.County</Tag>
        <Tag var="box1_4">Individual.State</Tag>
        <Tag var="box1_4">Individual.BusinessState</Tag>
        <Tag var="box1_5">Individual.Zip</Tag>
        <Tag var="box1_5">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    county = individual.county.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    county = '';
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}
if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}
if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", zip);
}]]></JS>
      <JSExpression hash="10360399116983464223"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    county = individual.county.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    county = '';
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}]]></JSExpression>
      <JSExpression hash="5504193471279701113"><![CDATA[if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}]]></JSExpression>
      <JSExpression hash="7328523480721037561"><![CDATA[if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3c2082e9-0921-4002-8bc8-de5414da2595">
      <Description><![CDATA[Address|City|County|State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.County</Tag>
        <Tag var="box1_4">Individual.State</Tag>
        <Tag var="box1_4">Individual.BusinessState</Tag>
        <Tag var="box1_4">Individual.Zip</Tag>
        <Tag var="box1_4">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    county = individual.county.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    county = '';
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}
if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}
if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state_zip);
}]]></JS>
      <JSExpression hash="9022773501372618010"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    county = individual.county.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    county = '';
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}]]></JSExpression>
      <JSExpression hash="5504193471279701113"><![CDATA[if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}]]></JSExpression>
      <JSExpression hash="972658116221492150"><![CDATA[if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b8bde532-6e1b-4d9e-8ec6-ff5687a36a00">
      <Description><![CDATA[Address|City|State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
        <Tag var="box1_4">Individual.Zip</Tag>
        <Tag var="box1_4">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}
if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", zip);
}]]></JS>
      <JSExpression hash="4781419998813414656"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}]]></JSExpression>
      <JSExpression hash="7328523480721037561"><![CDATA[if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="03bd75fd-5b5c-4cf5-936e-cba8784779a0">
      <Description><![CDATA[Address|City|State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}
if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state_zip);
}]]></JS>
      <JSExpression hash="18442234480104808713"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    state_zip = (individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    state_zip = (individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}]]></JSExpression>
      <JSExpression hash="972658116221492150"><![CDATA[if (!state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="608426d1-743d-4500-a654-7b6556f10091">
      <Description><![CDATA[Address|City|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    zip = individual.business_zip.trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JS>
      <JSExpression hash="4152404151741348333"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city = individual.city.trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city = individual.business_city.trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="5378094432486208029"><![CDATA[if (!city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e48c894b-3ad0-4834-8e07-2512b3cd24c2">
      <Description><![CDATA[Address|City + State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_2">Individual.State</Tag>
        <Tag var="box1_2">Individual.BusinessState</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JS>
      <JSExpression hash="1804159273885171417"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="17239464513958915714"><![CDATA[if (!city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="312f9d56-3065-4636-a80a-43aced9cfa0f">
      <Description><![CDATA[Address|City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_2">Individual.State</Tag>
        <Tag var="box1_2">Individual.BusinessState</Tag>
        <Tag var="box1_2">Individual.Zip</Tag>
        <Tag var="box1_2">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state_zip);
}]]></JS>
      <JSExpression hash="751379283184531752"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="11130827813581741562"><![CDATA[if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="07135d2d-7a97-4de8-9abd-87560e039ace">
      <Description><![CDATA[Address|City + State + Zip|County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_2">Individual.City</Tag>
        <Tag var="box1_2">Individual.BusinessCity</Tag>
        <Tag var="box1_2">Individual.State</Tag>
        <Tag var="box1_2">Individual.BusinessState</Tag>
        <Tag var="box1_2">Individual.Zip</Tag>
        <Tag var="box1_2">Individual.BusinessZip</Tag>
        <Tag var="box1_3">Individual.County</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
    county = individual.county.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
    county = '';
}
if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}
if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state_zip);
}
if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}]]></JS>
      <JSExpression hash="513319687104213036"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number)).squeeze(' ').toString().trim();
    city_state_zip = ((individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
    county = individual.county.trim();
}
else {
    addr = (individual.business_address + ' ' + individual.business_address2).squeeze(' ').toString().trim();
    city_state_zip = ((individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
    county = '';
}]]></JSExpression>
      <JSExpression hash="11436178624737323512"><![CDATA[if (!addr.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr);
}]]></JSExpression>
      <JSExpression hash="11130827813581741562"><![CDATA[if (!city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", city_state_zip);
}]]></JSExpression>
      <JSExpression hash="5504193471279701113"><![CDATA[if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", county);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="32415bcd-80d2-4492-b295-5754d49671eb">
      <Description><![CDATA[Address + City|County|State]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_2">Individual.County</Tag>
        <Tag var="box1_3">Individual.State</Tag>
        <Tag var="box1_3">Individual.BusinessState</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + individual.city).squeeze(' ').toString().trim();
    county = individual.county.trim();
    state = individual.state.trim();
}
else {
    addr_city = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();
    county = '';
    state = individual.business_state.trim();
}
if (!addr_city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city);
}
if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", county);
}
if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state);
}]]></JS>
      <JSExpression hash="80991806484548119"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + individual.city).squeeze(' ').toString().trim();
    county = individual.county.trim();
    state = individual.state.trim();
}
else {
    addr_city = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();
    county = '';
    state = individual.business_state.trim();
}]]></JSExpression>
      <JSExpression hash="10861457565552386851"><![CDATA[if (!addr_city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city);
}]]></JSExpression>
      <JSExpression hash="5504193471279701113"><![CDATA[if (!county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", county);
}]]></JSExpression>
      <JSExpression hash="7328523480721037561"><![CDATA[if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", state);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9b6946a-be6e-45fe-a8e2-54183a2ed3ab">
      <Description><![CDATA[Address + City|State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_2">Individual.State</Tag>
        <Tag var="box1_2">Individual.BusinessState</Tag>
        <Tag var="box1_3">Individual.Zip</Tag>
        <Tag var="box1_3">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + individual.city).squeeze(' ').toString().trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr_city = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}
if (!addr_city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city);
}
if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JS>
      <JSExpression hash="10201276102078057549"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + individual.city).squeeze(' ').toString().trim();
    state = individual.state.trim();
    zip = individual.zip.trim();
}
else {
    addr_city = (individual.business_address + ' ' + individual.business_address2 + ' ' + individual.business_city).squeeze(' ').toString().trim();
    state = individual.business_state.trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="10861457565552386851"><![CDATA[if (!addr_city.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city);
}]]></JSExpression>
      <JSExpression hash="7328523480721037561"><![CDATA[if (!state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f85b0b8d-46e4-4562-8d1b-b3610acc1ae1">
      <Description><![CDATA[Address + City + State|Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_2">Individual.Zip</Tag>
        <Tag var="box1_2">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr_city_state = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}
if (!addr_city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state);
}
if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", zip);
}]]></JS>
      <JSExpression hash="1291265736798129246"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state).squeeze(' ').toString().trim();
    zip = individual.zip.trim();
}
else {
    addr_city_state = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state).squeeze(' ').toString().trim();
    zip = individual.business_zip.trim();
}]]></JSExpression>
      <JSExpression hash="14088521045398459176"><![CDATA[if (!addr_city_state.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state);
}]]></JSExpression>
      <JSExpression hash="14090069080457727148"><![CDATA[if (!zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="68591412-9dbc-4bee-9e47-33de39bff605">
      <Description><![CDATA[Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state_zip = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr_city_state_zip = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr_city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state_zip);
}]]></JS>
      <JSExpression hash="1773922980837005246"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state_zip = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip).squeeze(' ').toString().trim();
}
else {
    addr_city_state_zip = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="4941719024358568154"><![CDATA[if (!addr_city_state_zip.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state_zip);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e422dfa7-f877-4c13-bd75-b558c4404068">
      <Description><![CDATA[Address + City + State + Zip + County]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Address</Tag>
        <Tag var="box1_1">Individual.ApartmentNumber</Tag>
        <Tag var="box1_1">Individual.City</Tag>
        <Tag var="box1_1">Individual.State</Tag>
        <Tag var="box1_1">Individual.Zip</Tag>
        <Tag var="box1_1">Individual.County</Tag>
        <Tag var="box1_1">Individual.BusinessAddress</Tag>
        <Tag var="box1_1">Individual.BusinessAddress2</Tag>
        <Tag var="box1_1">Individual.BusinessCity</Tag>
        <Tag var="box1_1">Individual.BusinessState</Tag>
        <Tag var="box1_1">Individual.BusinessZip</Tag>
      </TagMap>
      <JS><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state_zip_county = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip + ' ' + individual.county).squeeze(' ').toString().trim();
}
else {
    addr_city_state_zip_county = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}
if (!addr_city_state_zip_county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state_zip_county);
}]]></JS>
      <JSExpression hash="11339395960265218833"><![CDATA[if ((individual.business_address.trim() + individual.business_address2.trim()).trim().isEmpty()) {
    addr_city_state_zip_county = (individual.address + ' ' + (individual.apartment_number.trim().isEmpty() ? '' : 'Apt. #' + individual.apartment_number) + ' ' + (individual.city.trim().isEmpty() ? '' : individual.city + ', ') + individual.state + ' ' + individual.zip + ' ' + individual.county).squeeze(' ').toString().trim();
}
else {
    addr_city_state_zip_county = (individual.business_address + ' ' + individual.business_address2 + ' ' + (individual.business_city.trim().isEmpty() ? '' : individual.business_city + ', ') + individual.business_state + ' ' + individual.business_zip).squeeze(' ').toString().trim();
}]]></JSExpression>
      <JSExpression hash="456267362260175275"><![CDATA[if (!addr_city_state_zip_county.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", addr_city_state_zip_county);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0ef0e225-2134-4e50-ad82-cde9d1557e3f">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="95c1263e-a75e-4c98-ad3e-39b60b43f22d">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e3a8d60d-7421-467c-bc43-dfa7d2e2b82e">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="14bd9773-8de4-4c80-b778-2174455b7faf">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c7f087e-8ed7-40e6-aa53-f867feee1197">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e32f6c5e-0bd2-47ce-a6e8-cd633e6a3262">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="497394fe-8f3b-4776-b409-aea9c68dad28">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f67f1870-2e09-4490-80cb-4f22e5daf827">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="75fc78f4-d53f-4e65-875c-84f300bbf371">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="33b6dc94-60f3-44ef-946f-72c136f24750">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code|Phone: Business/Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ff005170-49e8-4aaa-9495-af7ab0ebf1dc">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code|Phone: Business/Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b1c2f7e0-3f67-4fae-afb1-f111ccb22318">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code in parenthesis|Phone: Business/Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ddd9bc60-7489-4c4e-b8bb-feb023af27cf">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code in parenthesis|Phone: Business/Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ac316e57-5aff-4eb1-b5e7-54c4228f1ce4">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code|Phone: Business/Work/Home/Mobile Phone 3 digit exchange|Phone: Business/Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="034b7b8f-d782-4d33-b338-0fd9f5aa957d">
      <Description><![CDATA[Phone: Business/Work/Home/Mobile Phone Area Code in parenthesis|Phone: Business/Work/Home/Mobile Phone 3 digit exchange|Phone: Business/Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_2">Individual.BusinessPhone</Tag>
        <Tag var="box1_2">Individual.WorkPhone</Tag>
        <Tag var="box1_2">Individual.Phone</Tag>
        <Tag var="box1_2">Individual.MobilePhone</Tag>
        <Tag var="box1_3">Individual.BusinessPhone</Tag>
        <Tag var="box1_3">Individual.WorkPhone</Tag>
        <Tag var="box1_3">Individual.Phone</Tag>
        <Tag var="box1_3">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6973a838-ee63-457b-a61c-a8b815c3e7f2">
      <Description><![CDATA[Sole Proprietor Name+Phone: [First+MI+Last+Suffix] + [Business/Work/Home/Mobile Phone]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}
tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16025910140187922522"><![CDATA[if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16587979858744255061"><![CDATA[tmp = ("" + (individual.first_name) + " " + (individual.middle_initial) + " " + (individual.last_name) + " " + (individual.suffix) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15325527190937962441"><![CDATA[tmp = (individual.first_name + " " + individual.middle_initial + " " + individual.last_name + " " + individual.suffix + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15078662313658017748"><![CDATA[tmp = (individual.first_name + ' ' + individual.middle_initial + ' ' + individual.last_name + ' ' + individual.suffix + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="091a6f52-d5e6-4c5d-9b87-bd67ad8fa5a8">
      <Description><![CDATA[Sole Proprietor Name+Phone: [Business Name] + [Business/Work/Home/Mobile Phone]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessName</Tag>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}
tmp = ("" + (individual.business_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16025910140187922522"><![CDATA[if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4267878578887383475"><![CDATA[tmp = ("" + (individual.business_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3380564219526800680"><![CDATA[tmp = (individual.business_name + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12145549993721989692"><![CDATA[tmp = (individual.business_name + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40711157-18be-449c-9479-d8da4fc4e722">
      <Description><![CDATA[Sole Proprietor Name+Phone: [Business Name / First+MI+Last+Suffix] + [Business/Work/Home/Mobile Phone]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessName</Tag>
        <Tag var="box1_1">Individual.FirstName</Tag>
        <Tag var="box1_1">Individual.MiddleInitial</Tag>
        <Tag var="box1_1">Individual.LastName</Tag>
        <Tag var="box1_1">Individual.Suffix</Tag>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}
tmp = ((individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + " " + (individual.suffix) + "") : individual.business_name) + (" " + (casetmp) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16025910140187922522"><![CDATA[if ((!individual.business_phone.trim().isEmpty())) {
    casetmp = individual.business_phone;
}
else if ((!individual.work_phone.trim().isEmpty())) {
    casetmp = individual.work_phone;
}
else if ((!individual.phone.trim().isEmpty())) {
    casetmp = individual.phone;
}
else {
    casetmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="617824361100193524"><![CDATA[tmp = ((individual.business_name.trim().isEmpty() ? ("" + (individual.first_name) + " " + (individual.middle_initial) + "  " + (individual.last_name) + " " + (individual.suffix) + "") : individual.business_name) + (" " + (casetmp) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15815041348836854909"><![CDATA[tmp = ((individual.business_name.trim().isEmpty() ? (individual.first_name + " " + individual.middle_initial + "  " + individual.last_name + " " + individual.suffix) : individual.business_name) + (" " + casetmp)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1999060438764426544"><![CDATA[tmp = ((individual.business_name.trim().isEmpty() ? (individual.first_name + ' ' + individual.middle_initial + '  ' + individual.last_name + ' ' + individual.suffix) : individual.business_name) + (' ' + casetmp)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="571a6938-e30d-4818-bece-8bbdc1323618">
      <Description><![CDATA[Sole Proprietor - FAX: Business Fax Number else Individual Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessFax</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="291413450734123890"><![CDATA[tmp = (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2e20522e-e79e-428b-9a9a-000be7a92732">
      <Description><![CDATA[Phone+Fax: [Business/Work/Home/Mobile] Phone + [Business Fax Number/Individual Fax Number]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessPhone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
        <Tag var="box1_1">Individual.BusinessFax</Tag>
        <Tag var="box1_1">Individual.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
tmp = ("" + (tmp) + "  " + (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3648723139829707907"><![CDATA[if (!individual.business_phone.trim().isEmpty()) {
    tmp = individual.business_phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12844465015853248063"><![CDATA[tmp = ("" + (tmp) + "  " + (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax) + "").trim();]]></JSExpression>
        <JSExpression hash="9582532746470910994"><![CDATA[tmp = (tmp + "  " + (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax)).trim();]]></JSExpression>
        <JSExpression hash="12979600614747820149"><![CDATA[tmp = (tmp + '  ' + (individual.business_fax.trim().isEmpty() ? individual.fax : individual.business_fax)).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f36d2054-ed61-4d7d-aa55-9710f980b4e8">
      <Description><![CDATA[Sole Proprietor - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11455718640021279553"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="50fa6517-12c3-4163-b20d-98c42d3a291e">
      <Description><![CDATA[Sole Proprietor - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - FEIN else SSN [999999999]:
//
tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="3538131688732240503"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14190081697409384998"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="24d29706-475c-4c1c-9b4f-b25f62b2454c">
      <Description><![CDATA[Sole Proprietor - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - FEIN [99 9999999] else SSN [999 99 9999]:
//
tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).toString().trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4344776186606750731"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).toString().trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0964cae-5577-4543-9c8e-e802b5358d21">
      <Description><![CDATA[Sole Proprietor - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_1">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN, or, if empty, a SSN:
//
tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3538131688732240503"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14190081697409384998"><![CDATA[tmp = (individual.fein.trim().isEmpty() ? individual.ssn : individual.fein).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9e0c5e56-653c-49db-934c-4b9cf00642c4">
      <Description><![CDATA[Sole Proprietor - FEIN Checkbox|Sole Proprietor - SSN Checkbox|Sole Proprietor - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_3">Individual.FEIN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN, but there are separate check boxes to indicate which is being used:
//
if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="4646353565515600421"><![CDATA[if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="37683146-9fc2-48bd-b1e7-6f6a615d05c5">
      <Description><![CDATA[Sole Proprietor - FEIN Checkbox|Sole Proprietor - SSN Checkbox|Sole Proprietor - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_3">Individual.FEIN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [999999999], but there are separate check boxes
// to indicate which is being used:
//
if (individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5793276301117907685"><![CDATA[if (individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="9665455727043589300"><![CDATA[if (individual.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4c020d2b-046b-42b0-ac7e-953fa0d5da1a">
      <Description><![CDATA[Sole Proprietor - FEIN Checkbox|Sole Proprietor - SSN Checkbox|Sole Proprietor - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_3">Individual.FEIN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a SSN [999 99 9999], but there are separate
// check boxes to indicate which is being used:
//
if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="4646353565515600421"><![CDATA[if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e486fa32-6555-4e3e-b563-1a6169bc4906">
      <Description><![CDATA[Sole Proprietor - FEIN Checkbox|Sole Proprietor - SSN Checkbox|Sole Proprietor - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_3">Individual.FEIN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [last 4 digits], but there are separate check boxes
// to indicate which is being used:
//
if (individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2582804274191704383"><![CDATA[if (individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="9324227940361998257"><![CDATA[if (individual.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (individual.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b7c4255-74e8-427e-84a9-380318c2a774">
      <Description><![CDATA[Sole Proprietor - FEIN|Sole Proprietor - SSN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box:
//
if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="11279235078149812543"><![CDATA[if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="89a0be42-e8cb-4a8a-8d2b-9d14413a4f2e">
      <Description><![CDATA[Sole Proprietor - FEIN 9 digits only|Sole Proprietor - SSN 9 digits only [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box [999999999]:
//
if (individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13076170695924272044"><![CDATA[if (individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="1978541250668810099"><![CDATA[if (individual.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = individual.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d919beee-4220-42ca-9bde-b281635d342c">
      <Description><![CDATA[Sole Proprietor - FEIN: Space instead of hyphen|Sole Proprietor - SSN [If no FEIN]: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else SSN in another box [999 99 9999]:
//
if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="4570887777318055988"><![CDATA[if (individual.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (individual.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = individual.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bf5847d5-c4da-49f4-b1ba-cbabebe857a2">
      <Description><![CDATA[Sole Proprietor - FEIN: Last 4 digits|Sole Proprietor - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box - last 4 digits:
//
if (individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16546593812352478431"><![CDATA[if (individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="9757515246244343451"><![CDATA[if (individual.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (individual.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = individual.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="18e8c4a2-914a-461d-88ec-b7fa85f67207">
      <Description><![CDATA[Sole Proprietor - FEIN: First 2 digits|Sole Proprietor - FEIN: Last 7 digits|Sole Proprietor - SSN [If no FEIN]: First 3 digits|Sole Proprietor - SSN [If no FEIN]: Next 2 digits|Sole Proprietor - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.FEIN</Tag>
        <Tag var="box1_2">Individual.FEIN</Tag>
        <Tag var="box1_3">Individual.SSN</Tag>
        <Tag var="box1_4">Individual.SSN</Tag>
        <Tag var="box1_5">Individual.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15428466824185205010"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="7735860673946340148"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(individual.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e5d811d2-1957-4fd6-afd4-38afd7556a72">
      <Description><![CDATA[Sole Proprietor - Email: Business Email else Individual Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.BusinessEmail</Tag>
        <Tag var="box1_1">Individual.Email</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.business_email.trim().isEmpty() ? individual.email : individual.business_email).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="669039136634468130"><![CDATA[tmp = (individual.business_email.trim().isEmpty() ? individual.email : individual.business_email).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d3f9dba6-e4ff-4892-9c0b-ac04718f96d3">
      <Description><![CDATA[Dependents - Name: First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_first_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14188595032546272925"><![CDATA[tmp = individual.dependent_first_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="06a50eb7-4f7e-40a8-99cc-335502a5f0f7">
      <Description><![CDATA[Dependents - Name: Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3493740269770751090"><![CDATA[tmp = individual.dependent_last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="89e606ac-3e4c-4343-8deb-ca237235d4a4">
      <Description><![CDATA[Dependents - Name: First + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentFirstName</Tag>
        <Tag var="box1_1">Individual.DependentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.dependent#_first_name + ' ' + individual.dependent#_last_name).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5852744269283243028"><![CDATA[tmp = (individual.dependent_first_name + ' ' + individual.dependent_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="13ec44ee-f061-4a9c-956d-c06c4d70ff93">
      <Description><![CDATA[Dependents - Name: Last + First]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentLastName</Tag>
        <Tag var="box1_1">Individual.DependentFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (individual.dependent#_last_name + ' ' + individual.dependent#_first_name).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9633036864894700055"><![CDATA[tmp = (individual.dependent_last_name + ' ' + individual.dependent_first_name).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7adb67f0-bd71-4927-93c5-72a0a21168d2">
      <Description><![CDATA[Dependents - SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="751486127538913714"><![CDATA[tmp = individual.dependent_ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71527b3d-9261-4200-bef9-4e0b61788716">
      <Description><![CDATA[Dependents - SSN: Digits only - 999999999]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="10074082951825315525"><![CDATA[tmp = individual.dependent_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="5849175127823357753"><![CDATA[tmp = individual.dependent_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7ec84072-c3cc-468a-864b-aa02651cb2d9">
      <Description><![CDATA[Dependents - SSN: Spaces instead of hyphens - 999 99 9999]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16691866145732362632"><![CDATA[tmp = individual.dependent_ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2956cd77-34bf-40d2-9756-c2b23d8205df">
      <Description><![CDATA[Dependents - SSN: Last 4 digits - 9999]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = individual.dependent#_ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10074082951825315525"><![CDATA[tmp = individual.dependent_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="5849175127823357753"><![CDATA[tmp = individual.dependent_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="85c0b62a-99d8-4080-bda9-2c1f1775343d">
      <Description><![CDATA[Dependents - SSN: First 3 digits - 999|Dependents - SSN: Second 2 digits - 99|Dependents - SSN: Last 4 digits - 9999]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentSSN</Tag>
        <Tag var="box1_2">Individual.DependentSSN</Tag>
        <Tag var="box1_3">Individual.DependentSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.dependent#_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15739706679813769142"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.dependent_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14987019122379272513"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(individual.dependent_ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e347b8d1-4bdb-4fe9-84d4-137e9ba1faad">
      <Description><![CDATA[Dependents - Relationship]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentRelationship</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_relationship.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2659579360430316348"><![CDATA[tmp = individual.dependent_relationship.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c52eb5d2-2617-43cd-9540-93cabfd5b048">
      <Description><![CDATA[Dependents - DOB]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.dependent#_dob.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9586192667742240508"><![CDATA[tmp = individual.dependent_dob.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="370723ed-843a-41db-9442-9dba8f5cae6e">
      <Description><![CDATA[Dependents - DOB: MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6567688473591465472"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="5158044560617548873"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="1845062630877225712"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="93dc07c4-4c01-476f-9f34-fdadd22d8ee9">
      <Description><![CDATA[Dependents - DOB: MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5572614517575165034"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="15255556483871704115"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="822438479136010972"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f5c73fda-d1ea-452f-80dd-fc2d84b36804">
      <Description><![CDATA[Dependents - DOB: MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11206012080623934905"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="7015090313090883598"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="9259007283785536935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4de97d3f-ca44-4a8a-9e6a-b5763231d66e">
      <Description><![CDATA[Dependents - DOB: MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8930055814353897345"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="7265686362135204939"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="46f56b13-2995-486c-8be7-ff043a3c0246">
      <Description><![CDATA[Dependents - DOB: MM/DD/YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11047842351380195305"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="12116365782027194496"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="16186678710822523952"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f204df5e-bc8a-4438-b501-92d5f4ad707b">
      <Description><![CDATA[Dependents - DOB: MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12666837535067693557"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="17468261775445501708"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="14440858305695718593"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4f2e88b6-9341-4224-9f44-b98b75d0d207">
      <Description><![CDATA[Dependents - DOB: MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="402609756737508633"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="3841751391073362482"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="6401519859559075596"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6277dc98-ff00-4025-803d-4b42a6691dfd">
      <Description><![CDATA[Dependents - DOB: MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Dependent DOB as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15194791663255802301"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="10168881558221511660"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="11001225988265785524"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8d3ab760-e664-4171-b8d8-aa7ba7a3f6f3">
      <Description><![CDATA[Dependents - DOB: MM|Dependents - DOB: DD|Dependents - DOB: YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
        <Tag var="box1_2">Individual.DependentDOB</Tag>
        <Tag var="box1_3">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Dependent DOB in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16040312612088982834"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15613990546537920882"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ad6eb55e-1d61-4465-b93d-1f903a184f68">
      <Description><![CDATA[Dependents - DOB: MM|Dependents - DOB: DD|Dependents - DOB: YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
        <Tag var="box1_2">Individual.DependentDOB</Tag>
        <Tag var="box1_3">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Dependent DOB in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11605916379355262993"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14407149097164162803"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="92816fe7-0ab9-47df-b21c-56cb8f5c1582">
      <Description><![CDATA[Dependents - DOB: Day with alpha suffix|Dependents - DOB: alpha month|Dependents - DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
        <Tag var="box1_2">Individual.DependentDOB</Tag>
        <Tag var="box1_3">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Dependent DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="488662158129446942"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="5384417411073813026"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13533156554031171186"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13146684851686590861"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="2579377775260614674"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12657964544579863261"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b61fe817-537e-4830-9953-5671db50cfee">
      <Description><![CDATA[Dependents - DOB: 2 digit day|Dependents - DOB: alpha month|Dependents - DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
        <Tag var="box1_2">Individual.DependentDOB</Tag>
        <Tag var="box1_3">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Dependent DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a birth date of 02/09/1940 would be displayed
// as '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15513384561017871270"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="2797457949052278012"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="11989251115283419649"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9654239495168095919"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="8497501797846534049"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10838085944430566562"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1d8905b0-2486-448c-9b9f-b10a06834708">
      <Description><![CDATA[Dependents - DOB: alpha month with a space + Day with alpha suffix|Dependents - DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
        <Tag var="box1_2">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Dependent DOB displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3198791066815059003"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="17965353649054298884"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17420413859275572932"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14660352741766213715"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="15668483425237519556"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="7756631089145610573"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(individual.dependent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5d28834f-1dc3-49c1-86ca-c9e52809c869">
      <Description><![CDATA[Filing Status: Single Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Single</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.single.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5816390810598550027"><![CDATA[if (!individual.single.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="db39c8dd-ebf2-40f8-bee3-b317c9b5f359">
      <Description><![CDATA[Filing Status: Married Filing Joint Checkbox]]></Description>
      <JS><![CDATA[SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');]]></JS>
      <JSExpression hash="17175853718935075694"><![CDATA[SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');]]></JSExpression>
    </JSBlock>
    <JSBlock id="03be90da-1d2e-451f-94f0-4fe96a01fa27">
      <Description><![CDATA[Filing Status: Married Filing Joint Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MarriedJoint</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.married_joint.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2634265975574650745"><![CDATA[if (!individual.married_joint.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f4187e94-4446-414e-a31b-f2e9de4b0a94">
      <Description><![CDATA[Filing Status: Married Filing Separate Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MarriedSeparate</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.married_separate.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13578817822480288503"><![CDATA[if (!individual.married_separate.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b2ba194f-543c-406e-b8dc-e09092b08b24">
      <Description><![CDATA[Filing Status: Married Filing Joint or Separate Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.MarriedJoint</Tag>
        <Tag var="box1_1">Individual.MarriedSeparate</Tag>
      </TagMap>
      <JS><![CDATA[if ((!(individual.married_joint + individual.married_separate).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2136934926830217040"><![CDATA[if ((!(individual.married_joint + individual.married_separate).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3008c61d-5da0-4619-97be-4d416f15a343">
      <Description><![CDATA[Filing Status: Head of Household Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.HeadOfHousehold</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.head_of_household.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="1705258219833710287"><![CDATA[if (!individual.head_of_household.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="294f2f93-97c0-46df-a4f4-2f8cec566dfc">
      <Description><![CDATA[Filing Status: Widow(er) Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.WidowWidower</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.widow_widower.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2368918743530273724"><![CDATA[if (!individual.widow_widower.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ac6b709e-e68a-4e26-ac20-19f1857e847d">
      <Description><![CDATA[Direct Deposit: Routing Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.RoutingNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.routing_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7893568167413913944"><![CDATA[tmp = individual.routing_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e0faceb-bfb8-46c3-ba9e-eb247eb00993">
      <Description><![CDATA[Direct Deposit: Account Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.AccountNumber</Tag>
      </TagMap>
      <JS><![CDATA[tmp = individual.account_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5822469000286669406"><![CDATA[tmp = individual.account_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a2680371-fdf3-48ca-abe3-45328d6ca9ec">
      <Description><![CDATA[Direct Deposit: Checking Account Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DirectDepositChecking</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.direct_deposit_checking.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10165453658825547152"><![CDATA[if (!individual.direct_deposit_checking.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="206fab6e-9c74-41fc-ac4f-2bfc416a71ce">
      <Description><![CDATA[Direct Deposit: Savings Account Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DirectDepositSavings</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.direct_deposit_savings.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="15877225854437207747"><![CDATA[if (!individual.direct_deposit_savings.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a83af286-54b4-4cac-ae48-1050c722e9e4">
      <Description><![CDATA[Individual Routing Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.RoutingNumber</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.routing_number.trim().isEmpty()) {
                            tmp = individual.routing_number.trim();
                          }
                          else if ((box1_1.trim().isEmpty())) {
                            tmp = '-'.repeat(#);
                          }
                          
                          if (!tmp.trim().isEmpty()) {
                                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                          }]]></JS>
      <JSExpression hash="14430421426170087998"><![CDATA[if (!individual.routing_number.trim().isEmpty()) {
                            tmp = individual.routing_number.trim();
                          }
                          else if ((box1_1.trim().isEmpty())) {
                            tmp = '-'.repeat();
                          }]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
                          }]]></JSExpression>
    </JSBlock>
    <JSBlock id="5eb6bc82-6cd2-403d-ae84-85deb4c9e77e">
      <Description><![CDATA[Individual Account Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.AccountNumber</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.account_number.trim().isEmpty()) {
                tmp = individual.account_number.trim();
            }
            else if ((box1_1.trim().isEmpty())) {
                tmp = '-'.repeat(#);
            }
            if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JS>
      <JSExpression hash="12208627625643495716"><![CDATA[if (!individual.account_number.trim().isEmpty()) {
                tmp = individual.account_number.trim();
            }
            else if ((box1_1.trim().isEmpty())) {
                tmp = '-'.repeat();
            }]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JSExpression>
    </JSBlock>
    <JSBlock id="7f1e25c3-c926-4c39-9669-3529c1bc6966">
      <Description><![CDATA[Phone: Home/Work/Mobile]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.Phone</Tag>
        <Tag var="box1_1">Individual.WorkPhone</Tag>
        <Tag var="box1_1">Individual.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else {
    tmp = individual.mobile_phone;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8064582341519580913"><![CDATA[if (!individual.phone.trim().isEmpty()) {
    tmp = individual.phone;
}
else if (!individual.work_phone.trim().isEmpty()) {
    tmp = individual.work_phone;
}
else {
    tmp = individual.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3ac8df63-62ca-4e2e-9713-0434c2ce8713">
      <Description><![CDATA[Dependents - DOB: MM/DD/YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Individual.DependentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// This will handle a 4 digit year if the profile validation is changed to a 4 digit year.
//
// Display Dependent DOB as "MM/DD/YYYY" - default to .strip:
yy = SFForms.Utilities.Time.now.strftime("%y").to_i();
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(individual.dependent#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0)
{
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > yy ? 19 : 20) + "" + (myMatches[4]) + "");
}
else
{
    tmp = individual.dependent#_dob.trim();
}
if (!tmp.trim().isEmpty())
{
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="13290635036976154949"><![CDATA[yy = SFForms.Utilities.Time.now.strftime("%y").to_i();]]></JSExpression>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14344643407813161580"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9760075837019302503"><![CDATA[myMatches = myReg.exec(individual.dependent_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="381195316871656858"><![CDATA[if (myMatches != null && myMatches.length > 0)
{
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > yy ? 19 : 20) + "" + (myMatches[4]) + "");
}
else
{
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="17308712692689903259"><![CDATA[if (myMatches != null && myMatches.length > 0)
{
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > yy ? 19 : 20) + myMatches[4]);
}
else
{
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
        <JSExpression hash="676701151105690055"><![CDATA[if (myMatches != null && myMatches.length > 0)
{
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > yy ? 19 : 20) + myMatches[4]);
}
else
{
    tmp = individual.dependent_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty())
{
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
  </Profile>
  <Profile name="Entity">
    <JSBlock id="5d929327-8ae7-4313-b503-b9e79f3b63f4">
      <Description><![CDATA[Entity Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Name</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15195797176689524971"><![CDATA[tmp = entity.name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b664e94e-3e98-496d-b04f-c9ccdedb9590">
      <Description><![CDATA[Address: Address 1]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15281341522933031458"><![CDATA[tmp = entity.address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b5f8514-b152-49f5-9126-a03edde1c468">
      <Description><![CDATA[Address: Address 2]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address2</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13793189947026024507"><![CDATA[tmp = entity.address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8e6af5d1-1c9d-47c1-ab2a-c96891115c8a">
      <Description><![CDATA[Address: Address 1 + Address 2]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address</Tag>
        <Tag var="box1_1">Entity.Address2</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.address + ' ' + entity.address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="915745938930388390"><![CDATA[tmp = (entity.address + ' ' + entity.address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f1ff1d7a-538f-4512-b68e-e42b6a1464f6">
      <Description><![CDATA[Address: Address 1 + Address 2 + City]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address</Tag>
        <Tag var="box1_1">Entity.Address2</Tag>
        <Tag var="box1_1">Entity.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.address + ' ' + entity.address2 + (entity.city.trim().isEmpty() ? '' : (", " + (entity.city) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15671061565925501798"><![CDATA[tmp = (entity.address + ' ' + entity.address2 + (entity.city.trim().isEmpty() ? '' : (", " + (entity.city) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7380402750408860927"><![CDATA[tmp = (entity.address + ' ' + entity.address2 + (entity.city.trim().isEmpty() ? '' : (", " + entity.city))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3464900884047701310"><![CDATA[tmp = (entity.address + ' ' + entity.address2 + (entity.city.trim().isEmpty() ? '' : (', ' + entity.city))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3246b1de-628f-4590-b78a-2ae6a18a2d62">
      <Description><![CDATA[Address: Address 1 + Address 2 + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address</Tag>
        <Tag var="box1_1">Entity.Address2</Tag>
        <Tag var="box1_1">Entity.City</Tag>
        <Tag var="box1_1">Entity.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3050944135794655228"><![CDATA[tmp = (entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="81d3527a-0fa7-4d76-8547-66dce96c9cdc">
      <Description><![CDATA[Address: Address 1 + Address 2 + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Address</Tag>
        <Tag var="box1_1">Entity.Address2</Tag>
        <Tag var="box1_1">Entity.City</Tag>
        <Tag var="box1_1">Entity.State</Tag>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12013429484780960783"><![CDATA[tmp = (entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6760a67c-3b56-4251-bf08-0cc6d8a5c574">
      <Description><![CDATA[Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.City</Tag>
        <Tag var="box1_1">Entity.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12453242366794973751"><![CDATA[tmp = ((entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4341710d-ccfe-4742-be7a-7bf81ec139ca">
      <Description><![CDATA[Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.City</Tag>
        <Tag var="box1_1">Entity.State</Tag>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18174766348715122504"><![CDATA[tmp = ((entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2dcc3544-f74f-471a-b543-501fa71d8e47">
      <Description><![CDATA[Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.State</Tag>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1842935841019477099"><![CDATA[tmp = (entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b3b96b86-6eb6-4b5d-ac48-ba2fa64d3a53">
      <Description><![CDATA[Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1072836860492602798"><![CDATA[tmp = entity.city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8f878945-09f2-432b-9f7d-3618e4af4843">
      <Description><![CDATA[Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14781550764855808486"><![CDATA[tmp = entity.state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="372a160b-9825-41d6-83eb-16d841ddf1c0">
      <Description><![CDATA[Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15449495074978643831"><![CDATA[tmp = entity.zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2f305090-02b2-49d3-a806-2664c9db1e96">
      <Description><![CDATA[Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="1430252560535765720"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b985d3aa-c36c-4805-b786-2706b7a52ccc">
      <Description><![CDATA[Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="1430252560535765720"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4092c46a-f35f-4090-b25d-a068b59aa045">
      <Description><![CDATA[Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9641334891129860649"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="13748723639191271693"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="8415945200608264683"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a77121d-addb-486a-93ee-5b6a94201b26">
      <Description><![CDATA[Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2024748610727976330"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="16914332118325090306"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="7813751013522004894"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5035f8f6-314d-4f2b-9356-319354f18f60">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="1430252560535765720"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ffc1f0f8-0933-4928-aaa1-065601036c3e">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = entity.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="7136612439246779758"><![CDATA[myMatches = myReg.exec(entity.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10072499865383920095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="4289222600169127446"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
        <JSExpression hash="8290677735507236980"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = entity.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="296e7125-77dd-4924-8271-870ab4f801a6">
      <Description><![CDATA[Address: Zip Code 5 digits|Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
        <Tag var="box1_2">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(entity.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = entity.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="13677801494172095838"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(entity.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = entity.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="576570d2-8cdd-4d7a-b042-4b5ea6824120">
      <Description><![CDATA[Entity Name + Address 1 + Address 2 + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Name</Tag>
        <Tag var="box1_1">Entity.Address</Tag>
        <Tag var="box1_1">Entity.Address2</Tag>
        <Tag var="box1_1">Entity.City</Tag>
        <Tag var="box1_1">Entity.State</Tag>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.name + ' ' + entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7034827484369976764"><![CDATA[tmp = (entity.name + ' ' + entity.address + ' ' + entity.address2 + ' ' + (entity.city.trim().isEmpty() ? '' : entity.city + ', ') + entity.state + ' ' + entity.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="febe95f8-40b6-4c2e-bdae-9f71d0703dcb">
      <Description><![CDATA[Phone: Entity Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13769984608715108862"><![CDATA[tmp = entity.phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aad43484-73bd-4ef5-b51d-640cf7299ba2">
      <Description><![CDATA[Phone: Entity Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="11412238696844591100"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8b9b1cb8-6998-484f-9860-7fd0f895ad90">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2177349101992300220"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16771752237549161786"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="72724055054145482"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ce8f2149-a494-4c54-bc45-aedd392911fb">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13200523079429106765"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11968002836197753664"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="1892583731448877008"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="799e79d2-e122-4839-abb0-d7f2b0360eb8">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8560367905326579526"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="4812606605515167154"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="6519365580025777290"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4c9ff9cc-2625-47c5-b32e-38dd4a40c0bd">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5241991473199599029"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="6984349061161140983"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="1795784395645196595"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f6c05c78-4fd3-4985-8528-3dc1200e0493">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16994264694419508956"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="14490063739873679339"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="12125363214140242853"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dedbbf55-fa9d-4685-9053-7577ef951056">
      <Description><![CDATA[Phone: Entity Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="816012020157411002"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16062908318599335639"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="2876896531961926112"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2c4dbf43-73a6-4e16-9e6a-aae922bd9242">
      <Description><![CDATA[Phone: Entity Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7196585951287612989"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15058177873105602834"><![CDATA[myMatches = myReg.exec(entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14034826907754093007"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="15296736843416388291"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9245751834861117226"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dde1e74f-9313-4f7f-b8d0-604218429559">
      <Description><![CDATA[Phone: Entity Phone Area Code|Phone: Entity Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10321381841675043826"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3526512114863435555"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7986117660737752744"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a90c1abd-c1db-4e07-ad2f-144d6a4e577f">
      <Description><![CDATA[Phone: Entity Phone Area Code|Phone: Entity Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="56109631478294484"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15565806498577827380"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6795166384300659742"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="51cf57c8-9ff3-41c9-a92c-203ce06540c0">
      <Description><![CDATA[Phone: Entity Phone Area Code in parenthesis|Phone: Entity Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7803535703770657887"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15213169438290562792"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2980661495588821525"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ad469f22-76f8-4c35-9104-203f768a6bf2">
      <Description><![CDATA[Phone: Entity Phone Area Code in parenthesis|Phone: Entity Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4076718385781540864"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12409204309077251054"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8520547383723813530"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f7258c36-3877-4c85-9144-85091e3a3371">
      <Description><![CDATA[Phone: Entity Phone Area Code|Phone: Entity Phone 3 digit exchange|Phone: Entity Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
        <Tag var="box1_3">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="14317770423868351121"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="255f1fb8-e76c-43ba-8743-b09cf65d6cb9">
      <Description><![CDATA[Phone: Entity Phone Area Code in parenthesis|Phone: Entity Phone 3 digit exchange|Phone: Entity Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
        <Tag var="box1_3">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11696557661957233960"><![CDATA[condvar = (entity.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16236957566842766880"><![CDATA[condvar = (entity.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2480050326412044330"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14734018092230136910"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4115982496757129894"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = entity.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9aaf2619-1938-4f39-bcfa-00f04ce41261">
      <Description><![CDATA[Phone: Entity Phone 7 or 10 boxes]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
        <Tag var="box1_3">Entity.Phone</Tag>
        <Tag var="box1_4">Entity.Phone</Tag>
        <Tag var="box1_5">Entity.Phone</Tag>
        <Tag var="box1_6">Entity.Phone</Tag>
        <Tag var="box1_7">Entity.Phone</Tag>
        <Tag var="box1_8">Entity.Phone</Tag>
        <Tag var="box1_9">Entity.Phone</Tag>
        <Tag var="box1_10">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
            // Entity phone number broken into 7 or 10 boxes:
            //
            // If there are 10 digits in the number: Flow to the 10 boxes, 1 digit per box.
            // If there are 7 digits in the number: We will assume no area code, skip the first 3 boxes.
            //
            if ((myMatches = /^(\d{3})?(\d{7})$/.exec(entity.phone.delete(/[^0-9]/g))) != null) {
                if (myMatches != null && myMatches.length > 0) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                }
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[2].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[2].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[2].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_10', myMatches[2].substr(6, 1));
            }
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7118727376769991283"><![CDATA[if ((myMatches = /^(\d{3})?(\d{7})$/.exec(entity.phone.delete(/[^0-9]/g))) != null) {
                if (myMatches != null && myMatches.length > 0) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                }
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[2].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[2].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[2].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_10', myMatches[2].substr(6, 1));
            }]]></JSExpression>
        <JSExpression hash="5548815193826279877"><![CDATA[if ((myMatches = /^(\d{3})?(\d{7})$/.exec(entity.phone.delete(/\-/g))) != null) {
                if (myMatches != null && myMatches.length > 0) {
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1].substr(0, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1].substr(1, 1));
                    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1].substr(2, 1));
                }
                SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2].substr(0, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2].substr(1, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2].substr(2, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[2].substr(3, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_8', myMatches[2].substr(4, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_9', myMatches[2].substr(5, 1));
                SFForms.StorageManager.setValue(formInstanceId, 'box1_10', myMatches[2].substr(6, 1));
            }]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="56d3298b-be89-48f7-944b-4ce3eaea02ec">
      <Description><![CDATA[Entity Name + Phone Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Name</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (entity.name) + " " + (entity.phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="2484651656264943585"><![CDATA[tmp = ("" + (entity.name) + " " + (entity.phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11160291057876994447"><![CDATA[tmp = (entity.name + " " + entity.phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="5618981242676798706"><![CDATA[tmp = (entity.name + ' ' + entity.phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c6e014fc-3f88-4e7a-b1b3-c1d20f5f3abd">
      <Description><![CDATA[Entity Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Fax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14361240229312819403"><![CDATA[tmp = entity.fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b5b57aa-d7ee-4670-bb7e-e839dfb19ed0">
      <Description><![CDATA[Phone+Fax: Entity Phone + Entity Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_1">Entity.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (entity.phone) + "  " + (entity.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9167075271779633133"><![CDATA[tmp = ("" + (entity.phone) + "  " + (entity.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="18422806438002183165"><![CDATA[tmp = (entity.phone + "  " + entity.fax).trim();]]></JSExpression>
        <JSExpression hash="3135849991188946836"><![CDATA[tmp = (entity.phone + '  ' + entity.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ec2b89a4-86e5-46bb-87f8-62db80ab617d">
      <Description><![CDATA[FEIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10405347138556183243"><![CDATA[tmp = entity.fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="95bf39ab-e395-4ab6-8f6b-e13e3e679f43">
      <Description><![CDATA[FEIN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6527201645777343368"><![CDATA[tmp = entity.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="3407385668799660240"><![CDATA[tmp = entity.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b8c7205-026c-41ac-9326-38a15a37cb76">
      <Description><![CDATA[FEIN: Space instead of a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11545635179785397466"><![CDATA[tmp = entity.fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2828ce9e-4310-42a8-a2d1-db9b5c61a088">
      <Description><![CDATA[FEIN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = entity.fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6527201645777343368"><![CDATA[tmp = entity.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="3407385668799660240"><![CDATA[tmp = entity.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="119e9500-6054-4a12-977e-5d5298688125">
      <Description><![CDATA[FEIN|FEIN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// We also have a checkbox to indicate this is an FEIN.
//
if (!((entity.fein.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', entity.fein.trim());
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JS>
      <JSExpression hash="13596725377445805896"><![CDATA[if (!((entity.fein.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', entity.fein.trim());
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cf9fe8c7-4df0-4cde-93b9-04da526b89c9">
      <Description><![CDATA[FEIN: 9 digits only|FEIN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN: 9 digits - 999999999.
// We also have a checkbox to indicate this is an FEIN.
//
if ((myMatches = /^(\d{9})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10905240389809841027"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="5341381305112199436"><![CDATA[if ((myMatches = /^(\d{9})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9a9ce51d-13cd-44b8-8eb2-fdeb6892df4a">
      <Description><![CDATA[FEIN: Space instead of a hyphen|FEIN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN: 9 digits - 99 9999999.
// We also have a checkbox to indicate this is an FEIN.
//
if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12478872301564979505"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="1294281240110845210"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + " " + myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="9821475166477660983"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + ' ' + myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="7637180395518663360"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', "" + (myMatches[1]) + " " + (myMatches[2]) + "");
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="10416868498151715948"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + " " + myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="7275751563719330161"><![CDATA[if ((myMatches = /^(\d\d)(\d{7})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1] + ' ' + myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d14b607f-2d17-401f-af61-a2ccfe295703">
      <Description><![CDATA[FEIN: Last 4 digits|FEIN Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a FEIN.
// We also have a checkbox to indicate this is an FEIN.
//
if ((myMatches = /^\d{5}(\d{4})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5808289886232797002"><![CDATA[if ((myMatches = /^\d{5}(\d{4})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
        <JSExpression hash="16696076105578244473"><![CDATA[if ((myMatches = /^\d{5}(\d{4})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e6be467d-dc6a-4284-b4a6-28feffa3b68c">
      <Description><![CDATA[FEIN: First 2 digits|FEIN: Next 7 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.FEIN</Tag>
        <Tag var="box1_2">Entity.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3064128472340002866"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(entity.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="810634063789935584"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(entity.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3cf2a393-ab01-401d-9155-fd56bc55c7c1">
      <Description><![CDATA[Entity Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Email</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17323088354595147210"><![CDATA[tmp = entity.email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6f5a3955-c03b-4949-a9e8-322f7a7c4b02">
      <Description><![CDATA[Entity State ID]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.StateId</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.state_id.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9912635481342236476"><![CDATA[tmp = entity.state_id.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d9220506-51f7-4975-9231-3861a26595ac">
      <Description><![CDATA[Entity Date Started]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.date_started.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3146238629630805774"><![CDATA[tmp = entity.date_started.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e6b42c0a-6298-4ea2-aba3-a3823fe9b61b">
      <Description><![CDATA[Entity Date Started: MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(entity.date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = entity.date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="5310265138019564615"><![CDATA[myMatches = myReg.exec(entity.date_started.trim());]]></JSExpression>
      <JSExpression hash="1336597885955750849"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = entity.date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e5d120db-c939-4765-9d61-464e167a82d2">
      <Description><![CDATA[Entity Date Started: MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(entity.date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = entity.date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="5310265138019564615"><![CDATA[myMatches = myReg.exec(entity.date_started.trim());]]></JSExpression>
      <JSExpression hash="17506393598912313994"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = entity.date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8fd96da3-e1c4-470c-b3da-2da1a4cabad1">
      <Description><![CDATA[Entity Date Started: MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(entity.date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = entity.date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="5310265138019564615"><![CDATA[myMatches = myReg.exec(entity.date_started.trim());]]></JSExpression>
      <JSExpression hash="5269760065529751045"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = entity.date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="eff75139-b22e-45df-a097-8b74c88d075a">
      <Description><![CDATA[Entity Date Started: MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(entity.date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = entity.date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="5310265138019564615"><![CDATA[myMatches = myReg.exec(entity.date_started.trim());]]></JSExpression>
      <JSExpression hash="3160390997475267314"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = entity.date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="10a0427c-a40b-4d30-b496-394e1529e583">
      <Description><![CDATA[Entity Date Started: MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = entity.date_started.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1061161077479482101"><![CDATA[tmp = entity.date_started.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08b10dd8-d8e1-4967-ad14-445b180ecfcf">
      <Description><![CDATA[Entity Date Started: MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = entity.date_started.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="638794555992288955"><![CDATA[tmp = entity.date_started.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="563cfc15-b26b-4444-a4a1-7398f868e387">
      <Description><![CDATA[Entity Date Started: MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = entity.date_started.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18187869539816298172"><![CDATA[tmp = entity.date_started.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b70bd18-6490-437b-8cfc-193fbf332640">
      <Description><![CDATA[Entity Date Started: MM|Entity Date Started: DD|Entity Date Started: YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_2">Entity.DateStarted</Tag>
        <Tag var="box1_3">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17093514716991254017"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14465282566329252375"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d3a7228d-0f9f-41b2-a7a8-5aec068341fe">
      <Description><![CDATA[Entity Date Started: MM|Entity Date Started: DD|Entity Date Started: YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_2">Entity.DateStarted</Tag>
        <Tag var="box1_3">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Date Started in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17969821029884024434"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10956252108336548202"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(entity.date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a67310f2-c1d0-464e-9afb-41b13dc41424">
      <Description><![CDATA[Entity Date Started: Day with alpha suffix|Entity Date Started: alpha month|Entity Date Started: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_2">Entity.DateStarted</Tag>
        <Tag var="box1_3">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Date Started displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date started of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The Entity profile validates date_started for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2789856454777854735"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="12649023219364628227"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="25dfe307-02d0-4d20-b2ae-3c658cb74c6e">
      <Description><![CDATA[Entity Date Started: 2 digit day|Entity Date Started: alpha month|Entity Date Started: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_2">Entity.DateStarted</Tag>
        <Tag var="box1_3">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Date Started displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date started of 02/09/1940 would be displayed
// as '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// The Entity profile validates date_started for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16165012746495134482"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11226188320493708625"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="96704120-30e0-41d4-8002-15f9b93e61c2">
      <Description><![CDATA[Entity Date Started: alpha month with a space + Day with alpha suffix|Entity Date Started: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_2">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[//
// Date Started displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date started of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The Entity profile validates date_started for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16016589365273502929"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="18427329443684108386"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="403216503602239209"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14679482742445201283"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="12999809989208578710"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14818117014461157578"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(entity.date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ca04594a-1489-4e18-ad7e-0e0df2dea06d">
      <Description><![CDATA[Entity State of Incorporation]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.StateOfIncorporation</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.state_of_incorporation.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4900181476343274638"><![CDATA[tmp = entity.state_of_incorporation.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f39cf01f-d927-4324-b831-a5e0bb0e5606">
      <Description><![CDATA[Entity Date Started with a space + Entity State of Incorporation]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
        <Tag var="box1_1">Entity.StateOfIncorporation</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (entity.date_started) + " " + (entity.state_of_incorporation) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12145615038831051289"><![CDATA[tmp = ("" + (entity.date_started) + " " + (entity.state_of_incorporation) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15735852954917982648"><![CDATA[tmp = (entity.date_started + " " + entity.state_of_incorporation).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4963397966373470792"><![CDATA[tmp = (entity.date_started + ' ' + entity.state_of_incorporation).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fa363af0-d25e-4447-87ea-311e6e34fd3a">
      <Description><![CDATA[Entity State of Incorporation with a space + Entity Date Started]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.StateOfIncorporation</Tag>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (entity.state_of_incorporation) + " " + (entity.date_started) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12247374428741966706"><![CDATA[tmp = ("" + (entity.state_of_incorporation) + " " + (entity.date_started) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="17695945262784617446"><![CDATA[tmp = (entity.state_of_incorporation + " " + entity.date_started).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1382664585784833116"><![CDATA[tmp = (entity.state_of_incorporation + ' ' + entity.date_started).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b94bd56-6124-480b-968f-c3b30e267e28">
      <Description><![CDATA[Entity NAICS Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.NAICSCode</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.naics_code.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2259291292814420373"><![CDATA[tmp = entity.naics_code.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4922cb52-f97a-4aa8-8f49-f4f67b40186c">
      <Description><![CDATA[Entity Principal Activity]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.PrincipalActivity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.principal_activity.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15309247410851890969"><![CDATA[tmp = entity.principal_activity.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ee1dcc17-7e98-4928-90da-619616810e1f">
      <Description><![CDATA[Entity Contact Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.contact_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3478886769465691150"><![CDATA[tmp = entity.contact_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8157ee5d-588a-4155-a39d-ae07d7b0f97b">
      <Description><![CDATA[Entity Contact Title]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactTitle</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.contact_title.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11809100536279712814"><![CDATA[tmp = entity.contact_title.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="88de8cc1-a8ee-497b-b049-ae68e1c5d70d">
      <Description><![CDATA[Entity Contact Name with a space + Entity Contact Title]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactName</Tag>
        <Tag var="box1_1">Entity.ContactTitle</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (entity.contact_name) + " " + (entity.contact_title) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="14501759434042621131"><![CDATA[tmp = ("" + (entity.contact_name) + " " + (entity.contact_title) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7692493236034506785"><![CDATA[tmp = (entity.contact_name + " " + entity.contact_title).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="14073742022808639874"><![CDATA[tmp = (entity.contact_name + ' ' + entity.contact_title).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4105ba8e-4da5-403f-9be4-707e87e2ed68">
      <Description><![CDATA[Phone: Entity Contact Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.contact_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14535688869494930120"><![CDATA[tmp = entity.contact_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="591f00fa-c293-40e6-9037-d1a2dc7a0758">
      <Description><![CDATA[Phone: Entity Contact Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="15957327771476742738"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b3ba5e0b-fb09-4cfe-afc5-10e6c0dc8ac6">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17010258542224897171"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12210958315206671623"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11670991285699915861"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2f204a5b-4f3c-4c06-bc19-e43cf2bed885">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9060016573055842395"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7158293195871357961"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14880493616017451408"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e1784cfa-7a13-4e5a-8cf4-ab6fa80b924d">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17587247566119647478"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2054695877673744690"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6615536445769942676"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="27dc0271-87ff-461c-87dc-6f818b2162af">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2961493542896629052"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14136026533144354255"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3279762886437389113"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e5cc9ae4-b580-49b3-a32a-d9fb935f5d71">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12749077889869462963"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13767217742707192977"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="18151560058066364063"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8f2cd2d5-4dd4-4529-9263-3b0e60b7ef11">
      <Description><![CDATA[Phone: Entity Contact Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7256346341473795697"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6644040594272521498"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11751216239515909254"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="07c5dfc5-0b1b-4928-90c3-54b1bc4adc22">
      <Description><![CDATA[Phone: Entity Contact Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8036583010785682219"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="1063460535601462846"><![CDATA[myMatches = myReg.exec(entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15940498746133581810"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6215906086064473444"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6168389799593916098"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9ba0d14a-f19a-40b6-be67-5a10cb63feb4">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code|Phone: Entity Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9175646162164544374"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11072836754276663008"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17221617301755861231"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5f145f6d-e3a6-4877-8420-17548fcf1ace">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code|Phone: Entity Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12655616465652882272"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13143453330122438550"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11486907879833622530"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5045e69a-c32e-452c-a300-dc7febbd408b">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code in parenthesis|Phone: Entity Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13761352865817474315"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7185484259401824209"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15218710392823265753"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a0e616f7-323f-4d5d-82ac-c56168c68306">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code in parenthesis|Phone: Entity Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2091719074703587665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13635312241247260189"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17327615936983418033"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="78a4956e-d882-4409-a8a6-67fece08ee5c">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code|Phone: Entity Contact Phone 3 digit exchange|Phone: Entity Contact Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_3">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3073433933808060558"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="808c0418-c6fb-4291-86bc-eee27c4f138f">
      <Description><![CDATA[Phone: Entity Contact Phone Area Code in parenthesis|Phone: Entity Contact Phone 3 digit exchange|Phone: Entity Contact Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_3">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1970644558607888957"><![CDATA[condvar = (entity.contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12213651872992472425"><![CDATA[condvar = (entity.contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7035721580058024643"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6085876972281229872"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15180513255654154221"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = entity.contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="771ebd5b-9b5f-479f-b9aa-a85b7f251bb2">
      <Description><![CDATA[Entity Contact Name + Phone Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactName</Tag>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (entity.contact_name) + " " + (entity.contact_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4533257028493523799"><![CDATA[tmp = ("" + (entity.contact_name) + " " + (entity.contact_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="17801216029087674624"><![CDATA[tmp = (entity.contact_name + " " + entity.contact_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7442788076271301653"><![CDATA[tmp = (entity.contact_name + ' ' + entity.contact_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3b41be54-8203-40bd-9a62-fec1737d110b">
      <Description><![CDATA[Entity Contact Name else Entity Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Name</Tag>
        <Tag var="box1_1">Entity.ContactName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.contact_name.trim().isEmpty() ? entity.name : entity.contact_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17981572584197570535"><![CDATA[tmp = (entity.contact_name.trim().isEmpty() ? entity.name : entity.contact_name).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fccbb70a-379a-4e58-ab8c-590ba4597ab9">
      <Description><![CDATA[Entity Contact Phone else Entity Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="16b19ce2-e829-4ceb-bc9d-cc2aca236bf5">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3fc5676f-362a-47aa-bcdc-cf0e4afedfd4">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c123af2d-c19c-40be-891d-f09475d95d09">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a54371b5-ddfd-4978-ac67-ca5c5863b4a5">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="11bdaad2-c32e-49da-ac32-a0ec5bc7a1ba">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f60831da-a47d-469e-b5fd-78400821a536">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d537c563-44e3-40e0-ab7a-ab052df2d56d">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9882402c-ee53-47fd-b7c7-012852c48108">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ca220a3b-5448-4b3e-9d65-366358d6cd60">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code|Phone: Entity Contact Phone else Entity Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9b39610e-f7f6-455a-8428-5fd31d8604fb">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code|Phone: Entity Contact Phone else Entity Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="451f48a1-1c1e-4b5d-837b-bf1b1ee693e3">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code in parenthesis|Phone: Entity Contact Phone else Entity Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1b40d1ca-2149-4409-9281-4d6a858b9963">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code in parenthesis|Phone: Entity Contact Phone else Entity Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1f0a4b44-014d-483c-a2ae-058c3ef8abb8">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code|Phone: Entity Contact Phone else Entity Phone 3 digit exchange|Phone: Entity Contact Phone else Entity Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
        <Tag var="box1_3">Entity.ContactPhone</Tag>
        <Tag var="box1_3">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="120e7b39-aaca-4e31-8866-056e55eed6e6">
      <Description><![CDATA[Phone: Entity Contact Phone else Entity Phone Area Code in parenthesis|Phone: Entity Contact Phone else Entity Phone 3 digit exchange|Phone: Entity Contact Phone else Entity Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_2">Entity.ContactPhone</Tag>
        <Tag var="box1_2">Entity.Phone</Tag>
        <Tag var="box1_3">Entity.ContactPhone</Tag>
        <Tag var="box1_3">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="4125110588039387416"><![CDATA[tmp = (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8a0e4600-e103-4d8b-8516-b7242e719c46">
      <Description><![CDATA[Entity Contact Name with a space + Entity Contact Phone else Entity Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactName</Tag>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.contact_name + ' ' + (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone)).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17674382268634768135"><![CDATA[tmp = (entity.contact_name + ' ' + (entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone)).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b3e9263b-e708-4ca4-af51-698130e28a39">
      <Description><![CDATA[Entity Contact Phone else Entity Phone with a space + Entity Contact Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.ContactPhone</Tag>
        <Tag var="box1_1">Entity.Phone</Tag>
        <Tag var="box1_1">Entity.ContactName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone) + ' ' + entity.contact_name).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3057035787563472434"><![CDATA[tmp = ((entity.contact_phone.trim().isEmpty() ? entity.phone : entity.contact_phone) + ' ' + entity.contact_name).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1c3c69c7-983f-4f7b-9211-af09cacacf8f">
      <Description><![CDATA[Agent Name: First Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_first_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="407456086960057272"><![CDATA[tmp = entity.agent_first_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="27402319-47e4-472a-83f6-814f551e5016">
      <Description><![CDATA[Agent Name: Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_middle_initial.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8862013056441786701"><![CDATA[tmp = entity.agent_middle_initial.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1d9d9ec3-39f0-4170-9c07-205145548d15">
      <Description><![CDATA[Agent Name: Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7004967336306987129"><![CDATA[tmp = entity.agent_last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3323f73a-b13f-4b98-ad97-a52eaf5a4ce5">
      <Description><![CDATA[Agent Name: First + Middle Initial + Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="10461910865431185186"><![CDATA[tmp = ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9631696937265589087"><![CDATA[tmp = (entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9156808395592580733"><![CDATA[tmp = (entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3c26a981-3124-43d0-8139-e1219b97999f">
      <Description><![CDATA[Agent Name: Business Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_business_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13147541649860150544"><![CDATA[tmp = entity.agent_business_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2699e110-ca2e-4d73-9bb6-3fa3e7e5cdf1">
      <Description><![CDATA[Agent Name: Business Name else First Name + Middle Initial + Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "").squeeze(' ') : entity.agent_business_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="10060099478813533966"><![CDATA[tmp = (entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "").squeeze(' ') : entity.agent_business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="12287734485540543317"><![CDATA[tmp = (entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name).squeeze(' ') : entity.agent_business_name).toString().trim();]]></JSExpression>
        <JSExpression hash="2251487950198572145"><![CDATA[tmp = (entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name).squeeze(' ') : entity.agent_business_name).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="85759d03-12b7-408e-80c4-aeedf7b8136b">
      <Description><![CDATA[Agent Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16919625546964264920"><![CDATA[tmp = entity.agent_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d1c48fc4-2b1d-4ad3-96ab-970d34cad210">
      <Description><![CDATA[Agent Address: Street Address + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4062814359659469773"><![CDATA[tmp = (entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="26713cd2-c68e-40dc-9260-44e61ee0523d">
      <Description><![CDATA[Agent Address: Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9842073781713619875"><![CDATA[tmp = (entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af53fdae-2d36-43a4-ad27-e208904c7f8d">
      <Description><![CDATA[Agent Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11040456200546127042"><![CDATA[tmp = entity.agent_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aa885802-185d-4f3e-8d72-de3f5be3cc5b">
      <Description><![CDATA[Agent Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6534959982022764833"><![CDATA[tmp = ((entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="56f163b8-bec9-4640-a686-720d40815b36">
      <Description><![CDATA[Agent Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="884527489635167590"><![CDATA[tmp = ((entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5435ea9-0c88-456a-8b50-de26fc8a5d5a">
      <Description><![CDATA[Agent Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2957350154167379741"><![CDATA[tmp = entity.agent_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af6c6f1d-a5a1-42a6-bb2e-4bd7e1ab7b2d">
      <Description><![CDATA[Agent Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="235936522839834491"><![CDATA[tmp = (entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1a3b8584-c32a-47a1-b708-9fff8a1a1c6a">
      <Description><![CDATA[Agent Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7075780272805280384"><![CDATA[tmp = entity.agent_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7cc89547-fb2a-4311-944a-f1c149bcc625">
      <Description><![CDATA[Agent Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="10772367638588158369"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4a84083d-dcf7-4de9-866b-83bb9b6e113c">
      <Description><![CDATA[Agent Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="10772367638588158369"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b4a987e1-9727-42cf-a728-54128cec0235">
      <Description><![CDATA[Agent Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14186709039892840287"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12044491458450606004"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12384514260102635824"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9ac44ace-fd81-4cf7-b945-c6768f403488">
      <Description><![CDATA[Agent Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4597943879889412009"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="9435037395431425178"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="15481114852695180999"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="21618c01-dd9c-4ae9-88db-47da8f6b77b3">
      <Description><![CDATA[Agent Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="10772367638588158369"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1e49315c-8349-4410-91d6-3549b55f3916">
      <Description><![CDATA[Agent Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = entity.agent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="11166161200908610997"><![CDATA[myMatches = myReg.exec(entity.agent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15868822276843409886"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11282904708702514664"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="9317365175187228205"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = entity.agent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="900feae8-5108-4670-8323-efcb81587634">
      <Description><![CDATA[Agent Address: Zip Code 5 digits|Agent Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentZip</Tag>
        <Tag var="box1_2">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(entity.agent_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = entity.agent_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="3482487437808577157"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(entity.agent_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = entity.agent_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="976879d5-b565-4452-851d-6fbc9bff2e21">
      <Description><![CDATA[Agent Name: Business Name + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (entity.agent_business_name + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1626733815502664788"><![CDATA[tmp = (entity.agent_business_name + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="04d93983-d791-4158-9a89-6bf3f7874eec">
      <Description><![CDATA[Agent Name: First Name + Middle Initial + Last Name + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="18241981196771170876"><![CDATA[tmp = (("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1990023718041873376"><![CDATA[tmp = ((entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4619441590070106226"><![CDATA[tmp = ((entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="730a86a4-252a-4b0c-a13a-cc4a694fabf6">
      <Description><![CDATA[Agent Name: (Business Name else First Name + Middle Initial + Last Name) + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
        <Tag var="box1_1">Entity.AgentAddress</Tag>
        <Tag var="box1_1">Entity.AgentCity</Tag>
        <Tag var="box1_1">Entity.AgentState</Tag>
        <Tag var="box1_1">Entity.AgentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") : entity.agent_business_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="16442935229102131307"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") : entity.agent_business_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6308342745419839141"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name) : entity.agent_business_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9747422730769233296"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name) : entity.agent_business_name) + ' ' + entity.agent_address + ' ' + (entity.agent_city.trim().isEmpty() ? '' : entity.agent_city + ', ') + entity.agent_state + ' ' + entity.agent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cacd39b7-2813-4d86-93dd-9f11cc280125">
      <Description><![CDATA[Phone: Agent Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.agent_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="239958597430645469"><![CDATA[tmp = entity.agent_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e6764ff5-38a0-41d9-92f9-f494db23bc1f">
      <Description><![CDATA[Phone: Agent Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17565270971166037254"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7d783702-f18f-47cf-9c47-e61ca8a309a0">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9215350272763080614"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9447266141899689530"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10495016367826336990"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="14248550-3252-4216-9fcd-ca79217bd549">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9086428936169500877"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11861127850361717239"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16577313410475005416"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8e91d3ed-f06d-45ed-8693-3771c10659ae">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17817614626596415764"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13518345195992749070"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12917879079479561325"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ce197a16-d3c1-4f5f-81e7-e99c703d57c5">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2741415667305779861"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17612934694208308220"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17606583218657117066"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8f8517a-97bb-4e9c-b8e0-6fd57764a59b">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10345181871573116968"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="262904455122095434"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14245705176419704857"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d0bbafda-17b5-41d3-8c05-6ad51eacc6a9">
      <Description><![CDATA[Phone: Agent Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6088935067817793586"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1832946017643819137"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6820250827489371336"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="957ce89a-b529-477f-94b3-672862eb313a">
      <Description><![CDATA[Phone: Agent Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4705621216959466631"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12003233446458366628"><![CDATA[myMatches = myReg.exec(entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5691917065864865987"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9043882696001362194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4748681726303958535"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3893df40-ada4-4efd-aae5-aa5cc427210d">
      <Description><![CDATA[Phone: Agent Phone Area Code|Phone: Agent Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10425791115565654072"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3516745466005920495"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12385011796452138541"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2c31daf7-06c1-4537-afa8-b39e34115fc6">
      <Description><![CDATA[Phone: Agent Phone Area Code|Phone: Agent Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3886104677197310670"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1327497647208056251"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4109521188028193366"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="14ae06fa-47c0-4afc-9cb4-0a12592bcecf">
      <Description><![CDATA[Phone: Agent Phone Area Code in parenthesis|Phone: Agent Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9505387066159322589"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17452358974678873963"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1232411225432988302"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="df1b10ad-f566-47e5-94a3-fab771cefa36">
      <Description><![CDATA[Phone: Agent Phone Area Code in parenthesis|Phone: Agent Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12734202865885039800"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14808785290131028772"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="603335115823110736"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d862979f-07a8-42c4-adfa-917758cd233e">
      <Description><![CDATA[Phone: Agent Phone Area Code|Phone: Agent Phone 3 digit exchange|Phone: Agent Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
        <Tag var="box1_3">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="662385310184321364"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="112b15a4-25fc-494b-a4fa-2a1842740b29">
      <Description><![CDATA[Phone: Agent Phone Area Code in parenthesis|Phone: Agent Phone 3 digit exchange|Phone: Agent Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
        <Tag var="box1_2">Entity.AgentPhone</Tag>
        <Tag var="box1_3">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (entity.agent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11030640120240977885"><![CDATA[condvar = (entity.agent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4519572478959526123"><![CDATA[condvar = (entity.agent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10874036561959826307"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2900410993227007307"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7746477148460700440"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = entity.agent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e8824a29-0d8c-438f-b77c-91bedbd6594f">
      <Description><![CDATA[Agent Name + Phone Number: [First+MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + " " + (entity.agent_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="8110642121066014144"><![CDATA[tmp = ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + " " + (entity.agent_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="650676982207372241"><![CDATA[tmp = (entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name + " " + entity.agent_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12236480135413151466"><![CDATA[tmp = (entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name + ' ' + entity.agent_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="63a5ef92-6309-4626-b12c-30020b7a52b6">
      <Description><![CDATA[Agent Business Name + Phone Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (entity.agent_business_name) + " " + (entity.agent_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="10888351465603632050"><![CDATA[tmp = ("" + (entity.agent_business_name) + " " + (entity.agent_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2680551831945735542"><![CDATA[tmp = (entity.agent_business_name + " " + entity.agent_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="18213813140477867442"><![CDATA[tmp = (entity.agent_business_name + ' ' + entity.agent_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f9ae826a-90c2-4e8a-8897-09b4fce7a228">
      <Description><![CDATA[Agent Name + Phone Number: [Business Name else First+MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.AgentBusinessName</Tag>
        <Tag var="box1_1">Entity.AgentFirstName</Tag>
        <Tag var="box1_1">Entity.AgentMiddleInitial</Tag>
        <Tag var="box1_1">Entity.AgentLastName</Tag>
        <Tag var="box1_1">Entity.AgentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ((entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") : entity.agent_business_name) + (" " + (entity.agent_phone) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1515720478470820164"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? ("" + (entity.agent_first_name) + " " + (entity.agent_middle_initial) + " " + (entity.agent_last_name) + "") : entity.agent_business_name) + (" " + (entity.agent_phone) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4006081298041107533"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + " " + entity.agent_middle_initial + " " + entity.agent_last_name) : entity.agent_business_name) + (" " + entity.agent_phone)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1015436141236313188"><![CDATA[tmp = ((entity.agent_business_name.trim().isEmpty() ? (entity.agent_first_name + ' ' + entity.agent_middle_initial + ' ' + entity.agent_last_name) : entity.agent_business_name) + (' ' + entity.agent_phone)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a32a8b14-95b1-4a03-a6b5-95f4a0218c70">
      <Description><![CDATA[Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.zip.delete(/[^A-Z0-9]/g);
            if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JS>
      <JSExpression hash="12191867318024760849"><![CDATA[tmp = entity.zip.delete(/[^A-Z0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JSExpression>
    </JSBlock>
    <JSBlock id="76d4f8c9-f51c-4893-9f9f-f4b99fc70b17">
      <Description><![CDATA[Entity Date Started]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.DateStarted</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.date_started.delete(/[^0-9]/g);
            if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JS>
      <JSExpression>
        <JSExpression hash="721985212834924299"><![CDATA[tmp = entity.date_started.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="6838769122997506166"><![CDATA[tmp = entity.date_started.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JSExpression>
    </JSBlock>
    <JSBlock id="c9b4a0c4-4d5d-43b2-b84c-6742220bb83d">
      <Description><![CDATA[Estate DOD]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.EstateDOD</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.estate_dod.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18264592865389842513"><![CDATA[tmp = entity.estate_dod.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="76336e72-8af7-4152-8c40-7a421e827b23">
      <Description><![CDATA[Estate SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.EstateSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.estate_ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7956552413060495415"><![CDATA[tmp = entity.estate_ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5e0e622f-1e18-45a4-999c-dc178b069637">
      <Description><![CDATA[Estate Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Entity.EstateName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = entity.estate_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15352597819458320145"><![CDATA[tmp = entity.estate_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
  </Profile>
  <Profile name="Fiduciary">
    <JSBlock id="2371ad7a-5e8b-4dbf-a7b3-1107a75f0f17">
      <Description><![CDATA[Fiduciary Name: First Name + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.FirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.first_name_and_mi.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8723388682621057364"><![CDATA[tmp = fiduciary.first_name_and_mi.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="34818acc-fee0-441c-a229-9394d407afc2">
      <Description><![CDATA[Fiduciary Name: Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5989905112543259751"><![CDATA[tmp = fiduciary.last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f13fdbb4-c8c1-4919-a7d7-6d6b01bb2b97">
      <Description><![CDATA[Fiduciary Name: First Name + Middle Initial + Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.FirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15468710826266387691"><![CDATA[tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4303881553899785252"><![CDATA[tmp = (fiduciary.first_name_and_mi + " " + fiduciary.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2223371528265232916"><![CDATA[tmp = (fiduciary.first_name_and_mi + ' ' + fiduciary.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="012b5906-1b82-4ccf-82ea-933c43b7aeff">
      <Description><![CDATA[Fiduciary Name: Last Name + First Name + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
        <Tag var="box1_1">Fiduciary.FirstNameAndMI</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (fiduciary.last_name) + " " + (fiduciary.first_name_and_mi) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9788179165338460100"><![CDATA[tmp = ("" + (fiduciary.last_name) + " " + (fiduciary.first_name_and_mi) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1735665716583450982"><![CDATA[tmp = (fiduciary.last_name + " " + fiduciary.first_name_and_mi).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="3397051921561310618"><![CDATA[tmp = (fiduciary.last_name + ' ' + fiduciary.first_name_and_mi).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71ab505e-422d-42c0-a424-1a377a057d86">
      <Description><![CDATA[Fiduciary Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Address</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12292977591434069959"><![CDATA[tmp = fiduciary.address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f959339b-ae44-45ad-856c-c7e2aa25ca20">
      <Description><![CDATA[Fiduciary Address: Street Address + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Address</Tag>
        <Tag var="box1_1">Fiduciary.City</Tag>
        <Tag var="box1_1">Fiduciary.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6625678021674084785"><![CDATA[tmp = (fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="667c79be-06eb-4c36-bee3-d63a4594a4b8">
      <Description><![CDATA[Fiduciary Address: Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Address</Tag>
        <Tag var="box1_1">Fiduciary.City</Tag>
        <Tag var="box1_1">Fiduciary.State</Tag>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1383844542515416510"><![CDATA[tmp = (fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d7a5d78b-71c5-4018-86cf-0d80d27dae36">
      <Description><![CDATA[Fiduciary Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3328963132121380299"><![CDATA[tmp = fiduciary.city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c5a2ce8-3099-431a-a898-12b10047dad3">
      <Description><![CDATA[Fiduciary Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.City</Tag>
        <Tag var="box1_1">Fiduciary.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1228751317605946304"><![CDATA[tmp = ((fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="96a67569-6b86-43ad-9b7b-7fb58d70c7b8">
      <Description><![CDATA[Fiduciary Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.City</Tag>
        <Tag var="box1_1">Fiduciary.State</Tag>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8115770347029229800"><![CDATA[tmp = ((fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8c15106b-de7a-46b4-aee0-2c21f96d94d9">
      <Description><![CDATA[Fiduciary Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16432616573271106164"><![CDATA[tmp = fiduciary.state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ed829c3f-0233-4894-be04-255555e0dd62">
      <Description><![CDATA[Fiduciary Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.State</Tag>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4937372666723326547"><![CDATA[tmp = (fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8f92a94e-5fc1-491e-8959-db5f955c108e">
      <Description><![CDATA[Fiduciary Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4378435959545736818"><![CDATA[tmp = fiduciary.zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b3217815-14de-40a2-80b2-8b76a91f24f7">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18379643786451298141"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9c624c38-79b5-40a0-bf09-0e44892cf63c">
      <Description><![CDATA[Fiduciary Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18379643786451298141"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9deb14f6-7972-4361-b589-d50776581f94">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9148422546876493658"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="6284830907059067704"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="17995188003881165466"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2fe8755a-4fa8-4435-8f8f-ebe566d12f1d">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764141797777997737"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="1792974634679537429"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="797752257378538361"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1fb268df-4109-48c8-a364-1f634677d2d8">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18379643786451298141"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c676590c-aa8a-4e2d-bc23-362dec162062">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen or Zip Code 5 digits with a space, hyphen, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit or 9 digit zip code with a space char before and after the hyphen - 99999 or 99999-9999
// or 99999 - 9999 - defaults to .strip.
//
// We will just process a 5 digit or a hyphenated 9 digit zip code and leave it at that.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = fiduciary.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="16281685542097535317"><![CDATA[myMatches = myReg.exec(fiduciary.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10726294191955947984"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="8524742297765223649"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
        <JSExpression hash="14992318515283611342"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = fiduciary.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="199800e9-0b71-4e39-a270-c6b03eee69cb">
      <Description><![CDATA[Fiduciary Address: Zip Code 5 digits|Fiduciary Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
        <Tag var="box1_2">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(fiduciary.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = fiduciary.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="5238918923576380177"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(fiduciary.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = fiduciary.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="141c976f-b1c8-42fb-8dc1-4c5ebffe1710">
      <Description><![CDATA[Fiduciary Name + Address: First Name + Middle Initital + Last Name + Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.FirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
        <Tag var="box1_1">Fiduciary.Address</Tag>
        <Tag var="box1_1">Fiduciary.City</Tag>
        <Tag var="box1_1">Fiduciary.State</Tag>
        <Tag var="box1_1">Fiduciary.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.first_name_and_mi + ' ' + fiduciary.last_name + ' ' + fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8941383582321393761"><![CDATA[tmp = (fiduciary.first_name_and_mi + ' ' + fiduciary.last_name + ' ' + fiduciary.address + ' ' + (fiduciary.city.trim().isEmpty() ? '' : fiduciary.city + ', ') + fiduciary.state + ' ' + fiduciary.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0448774-ff1d-4cfd-a5da-88a4a70feaa2">
      <Description><![CDATA[Fiduciary Title]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Title</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.title.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1340972073383655644"><![CDATA[tmp = fiduciary.title.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f755934d-fe3e-44b1-b168-01a397c49889">
      <Description><![CDATA[Fiduciary First Name + Middle Initital + Last Name + Title]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.FirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
        <Tag var="box1_1">Fiduciary.Title</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + " " + (fiduciary.title) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9189482152526407684"><![CDATA[tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + " " + (fiduciary.title) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1990815750026654975"><![CDATA[tmp = (fiduciary.first_name_and_mi + " " + fiduciary.last_name + " " + fiduciary.title).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7161480459957115417"><![CDATA[tmp = (fiduciary.first_name_and_mi + ' ' + fiduciary.last_name + ' ' + fiduciary.title).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2d90930f-cf6f-4217-b9e7-606a8d8e3200">
      <Description><![CDATA[Fiduciary Phone: Fiduciary Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18134974401992049026"><![CDATA[tmp = fiduciary.phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08911374-4865-481b-9fda-96e5fea05aa1">
      <Description><![CDATA[Fiduciary Phone: 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8512170301022226060"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="88323e96-1d72-4d0f-97fc-d25c2568c848">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16751842486434549410"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="15712019048510508403"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="10291204012892933146"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6db51c1d-4011-434a-8258-66473aae642e">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6293510469981516711"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="1711601124540294178"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="8182468455145644191"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="92393e48-cfe4-4346-bf59-20c802bccb54">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5183244158429260377"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="5178980265122382012"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11322805453416947562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5eef32b4-ddca-48ca-b6c6-b5b37e6cdf94">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3823970120580050637"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="7495786693890232706"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16133965858005068559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="053f6e26-f803-4e43-b89f-4f1ea0e9e281">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2781716789585859609"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="15126862175694637067"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="7977875787268522160"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="73c1c157-71ec-4a55-85aa-989cf2d0fcc0">
      <Description><![CDATA[Fiduciary Phone: Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9918865070609629909"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="15028386129340999494"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="10566448386997157241"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5cb0b8c8-9edf-452e-8bd7-7341f05943ec">
      <Description><![CDATA[Fiduciary Phone: 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14897011806549664748"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11181171874564729346"><![CDATA[myMatches = myReg.exec(fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11105810130790423388"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="16327687603808479710"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9063070023749912314"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40a47669-ea0e-412a-93a3-ed7be7d0781a">
      <Description><![CDATA[Fiduciary Phone: Area Code|Fiduciary Phone: 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11263809893685789906"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1524733264633405892"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7459674627250849085"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="94d59bc8-5770-4acc-8dd8-d874b79a13d4">
      <Description><![CDATA[Fiduciary Phone: Area Code|Fiduciary Phone: 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15040393463905708663"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3730075810765925510"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8983877000794698598"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3779a555-21e2-4367-9bfb-9370d99e42de">
      <Description><![CDATA[Fiduciary Phone: Area Code in parenthesis|Fiduciary Phone: 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17598712865826736719"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="18414232805675311192"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16828200145414265371"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d8d7a56a-9466-4db1-8f3f-f8ab0d4cf1f2">
      <Description><![CDATA[Fiduciary Phone: Area Code in parenthesis|Fiduciary Phone: 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11444114836800169387"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="267490288405785047"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16804690022296640306"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7012b701-0e29-49ff-9106-107641bc7cee">
      <Description><![CDATA[Fiduciary Phone: Area Code|Fiduciary Phone: 3 digit exchange|Fiduciary Phone: 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
        <Tag var="box1_3">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="16272238660627875097"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="50f49d5a-33f8-4fc7-9492-b4d3876aa72a">
      <Description><![CDATA[Fiduciary Phone: Area Code in parenthesis|Fiduciary Phone: 3 digit exchange|Fiduciary Phone: 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
        <Tag var="box1_2">Fiduciary.Phone</Tag>
        <Tag var="box1_3">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (fiduciary.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="927502600939505995"><![CDATA[condvar = (fiduciary.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4556641211670815801"><![CDATA[condvar = (fiduciary.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7717592854047760395"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9306310852861050010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6493368777001690611"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = fiduciary.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="77b2face-b94d-44ea-9ade-ea8ea643cfd7">
      <Description><![CDATA[Fiduciary Name + Phone Number: [First_MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.FirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.LastName</Tag>
        <Tag var="box1_1">Fiduciary.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + " " + (fiduciary.phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1715362077451592027"><![CDATA[tmp = ("" + (fiduciary.first_name_and_mi) + " " + (fiduciary.last_name) + " " + (fiduciary.phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="10647858371729350788"><![CDATA[tmp = (fiduciary.first_name_and_mi + " " + fiduciary.last_name + " " + fiduciary.phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6534243837882807474"><![CDATA[tmp = (fiduciary.first_name_and_mi + ' ' + fiduciary.last_name + ' ' + fiduciary.phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1038df01-c347-4fb8-933c-65a2347db3be">
      <Description><![CDATA[Fiduciary: SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8155056991711190972"><![CDATA[tmp = fiduciary.ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5f584098-00bf-4529-bf3e-4af6b16f4950">
      <Description><![CDATA[Fiduciary SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4688908004116441829"><![CDATA[tmp = fiduciary.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="10989680942533675557"><![CDATA[tmp = fiduciary.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="82705427-78d8-44a2-b289-514b643c77fe">
      <Description><![CDATA[Fiduciary SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17041471230004166707"><![CDATA[tmp = fiduciary.ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9a891a32-b545-4cae-9b1c-5ae6e84ff01e">
      <Description><![CDATA[Fiduciary SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = fiduciary.ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4688908004116441829"><![CDATA[tmp = fiduciary.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="10989680942533675557"><![CDATA[tmp = fiduciary.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="12715d71-66b3-4c5e-a138-a485c115db35">
      <Description><![CDATA[Fiduciary SSN: First 3 digits|Fiduciary SSN: Next 2 digits|Fiduciary SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.SSN</Tag>
        <Tag var="box1_2">Fiduciary.SSN</Tag>
        <Tag var="box1_3">Fiduciary.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3622684751014334164"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="18129331334002229431"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="81eb346e-3503-4323-8dec-1a8811aaeb0d">
      <Description><![CDATA[Estate or Trust Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EstateName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.estate_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9462909439150041408"><![CDATA[tmp = fiduciary.estate_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="93f63955-8f52-4820-9741-a50888d1f7c8">
      <Description><![CDATA[Estate or Trust: FEIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="109c5452-9b1f-4178-a1eb-b2cc58843b35">
      <Description><![CDATA[Estate or Trust FEIN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="35100e77-ab92-4f23-99db-298697d0d3d4">
      <Description><![CDATA[Estate or Trust FEIN: Space instead of a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN [99 9999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="3327344423551032095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="298ce59d-834c-4f23-8088-2fb6edae916d">
      <Description><![CDATA[Estate or Trust FEIN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^\d\d-\d{3}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="9922658390315729580"><![CDATA[myReg = /^\d\d-\d{3}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a468ec4-5b35-48cc-a2c2-81e05d37fefc">
      <Description><![CDATA[Estate or Trust FEIN: First 2 digits|Estate or Trust FEIN: Next 7 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression hash="14498775568324082042"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c09deb55-2dea-464b-a79c-f97a08b490b7">
      <Description><![CDATA[Estate or Trust: SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="58e6178b-50b6-46fc-b1c5-87a6a770cd84">
      <Description><![CDATA[Estate or Trust SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a SSN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="599b7842-3bef-4274-8c2e-0dedcddb4caf">
      <Description><![CDATA[Estate or Trust SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a SSN [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9e2a8cac-ba73-41e1-be3a-fa2473b8a5be">
      <Description><![CDATA[Estate or Trust SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = fiduciary.ein.trim();
myReg = /^\d{3}-\d\d-(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="18318445402606293553"><![CDATA[myReg = /^\d{3}-\d\d-(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c8391886-0cf7-45b7-902c-5489dd4e5549">
      <Description><![CDATA[Estate or Trust SSN: First 3 digits|Estate or Trust SSN: Next 2 digits|Estate or Trust SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into three boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="7632441959631479254"><![CDATA[if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f5928c7f-97d4-4b8d-a3ae-8b1aaeb9787d">
      <Description><![CDATA[Estate or Trust - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN else a SSN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip the value and give it to them as either an FEIN or a SSN is acceptable.
//
tmp = fiduciary.ein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12346788826624519220"><![CDATA[tmp = fiduciary.ein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8e4aad0-5a83-4074-8889-0b14017e3780">
      <Description><![CDATA[Estate or Trust - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN else a SSN - displayed in 1 box - [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give it to them, as either an FEIN or
// a SSN expressed as 9 digits is acceptable.
//
tmp = fiduciary.ein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="17089719070553850616"><![CDATA[tmp = fiduciary.ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="6723390436789716348"><![CDATA[tmp = fiduciary.ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ae932a8c-c63b-4d1d-a8bf-4fd8f5088238">
      <Description><![CDATA[Estate or Trust - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants an FEIN else a SSN - displayed in 1 box with hyphen(s) replaced by a space char -
// [FEIN: 99 9999999; SSN: 999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip and substitute a space char for the hyphens.
//
tmp = fiduciary.ein.trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13616237665070198827"><![CDATA[tmp = fiduciary.ein.trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="468fe127-caf7-48ce-b757-5e504f64ffac">
      <Description><![CDATA[Estate or Trust - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants the last 4 digits of an FEIN else a SSN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give them the last 4 digits if we
// have 9 digits to work with after the deletion.
//
tmp = fiduciary.ein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17089719070553850616"><![CDATA[tmp = fiduciary.ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="6723390436789716348"><![CDATA[tmp = fiduciary.ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="afe42fa1-1d5d-4cbe-a1e2-6c1a4d06b435">
      <Description><![CDATA[Estate or Trust - FEIN Checkbox|Estate or Trust - SSN Checkbox|Estate or Trust - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN, but there are separate check boxes to indicate
// which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// So we need to make sure we check the proper box by looking at the pattern in the ein field.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="5139024503305284216"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="64073707-2ca7-4ad1-b4a8-b687a544a87e">
      <Description><![CDATA[Estate or Trust - FEIN Checkbox|Estate or Trust - SSN Checkbox|Estate or Trust - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN [999999999], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the ein field, then
// we delete the hyphen(s). to get the 9 digit value.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="5139024503305284216"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5c836381-096f-4f9b-904a-841b72b7aa4f">
      <Description><![CDATA[Estate or Trust - FEIN Checkbox|Estate or Trust - SSN Checkbox|Estate or Trust - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a SSN [999 99 9999], but there are separate
// check boxes to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the ein field, then
// we replace the hyphen(s) with a space char.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="5139024503305284216"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="39ee16b6-4016-4029-b627-aace3cd11d5e">
      <Description><![CDATA[Estate or Trust - FEIN Checkbox|Estate or Trust - SSN Checkbox|Estate or Trust - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [last 4 digits], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the ein field, then
// we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12522774079669774059"><![CDATA[if (fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4f9733cd-dfbe-4506-af68-998585e71092">
      <Description><![CDATA[Estate or Trust - FEIN|Estate or Trust - SSN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// ein field.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="8088118474435848828"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="50f924a8-3ce4-4f93-ae50-2eee291d11ee">
      <Description><![CDATA[Estate or Trust - FEIN 9 digits only|Estate or Trust - SSN 9 digits only [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// ein field, then we delete the hyphens.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].delete(/\-/g)));
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].delete(/\-/g)));
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14003222029885164094"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].delete(/\-/g)));
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].delete(/\-/g)));
}]]></JSExpression>
        <JSExpression hash="4036924095669555451"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].delete(/[^0-9]/g)));
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].delete(/[^0-9]/g)));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="4b70b5d3-ff39-49a7-81bc-05d4f1b49c8f">
      <Description><![CDATA[Estate or Trust - FEIN: Space instead of hyphen|Estate or Trust - SSN [If no FEIN]: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else SSN in another box [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// ein field, then we replace the hyphens with a space char.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="10621687066192415113"><![CDATA[if (fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="28c60b53-a4a7-4797-a35f-45da89f1b3be">
      <Description><![CDATA[Estate or Trust - FEIN: Last 4 digits|Estate or Trust - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box - last 4 digits:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// ein field, then we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="5818554684307411503"><![CDATA[if (fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = fiduciary.ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4a059f3b-8870-4799-84bc-4d4ec0ab0c5e">
      <Description><![CDATA[Estate or Trust - FEIN: First 2 digits|Estate or Trust - FEIN: Last 7 digits|Estate or Trust - SSN [If no FEIN]: First 3 digits|Estate or Trust - SSN [If no FEIN]: Next 2 digits|Estate or Trust - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EIN</Tag>
        <Tag var="box1_2">Fiduciary.EIN</Tag>
        <Tag var="box1_3">Fiduciary.EIN</Tag>
        <Tag var="box1_4">Fiduciary.EIN</Tag>
        <Tag var="box1_5">Fiduciary.EIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else SSN broken into 3 boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the values to the proper boxes by first looking at the pattern in the
// ein field, then we give them the breakout accordingly [breaking on the hyphens].
//
//
// FEIN:
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="15074864569644214402"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(fiduciary.ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e9060526-6d8e-4ca7-b037-cc2a9526d33a">
      <Description><![CDATA[Estate or Trust Creation date]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.entity_creation_date.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1193396512054520081"><![CDATA[tmp = fiduciary.entity_creation_date.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aeb5fd05-6466-43a0-bdae-5a4a82bbf407">
      <Description><![CDATA[Estate or Trust: Creation Date MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.entity_creation_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3964482722085059294"><![CDATA[myMatches = myReg.exec(fiduciary.entity_creation_date.trim());]]></JSExpression>
      <JSExpression hash="17860182234879406012"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d45db813-1969-41fb-8a9b-e27d22e53123">
      <Description><![CDATA[Estate or Trust: Creation Date MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.entity_creation_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3964482722085059294"><![CDATA[myMatches = myReg.exec(fiduciary.entity_creation_date.trim());]]></JSExpression>
      <JSExpression hash="16561157525130083034"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d87afec8-7bc7-406a-bd9b-22f568cc36e3">
      <Description><![CDATA[Estate or Trust: Creation Date MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.entity_creation_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3964482722085059294"><![CDATA[myMatches = myReg.exec(fiduciary.entity_creation_date.trim());]]></JSExpression>
      <JSExpression hash="7533472811420911124"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0efdfe65-4d9e-41fd-969d-9baf77e07a9d">
      <Description><![CDATA[Estate or Trust: Creation Date MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.entity_creation_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3964482722085059294"><![CDATA[myMatches = myReg.exec(fiduciary.entity_creation_date.trim());]]></JSExpression>
      <JSExpression hash="16946596161300913626"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.entity_creation_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e2bf0ba7-113b-449d-b09e-dd57432852cc">
      <Description><![CDATA[Estate or Trust: Creation Date MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.entity_creation_date.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4046106497025184947"><![CDATA[tmp = fiduciary.entity_creation_date.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a0b5236a-3b01-4bb8-af4e-18fec42def9d">
      <Description><![CDATA[Estate or Trust: Creation Date MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.entity_creation_date.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4459501607912233126"><![CDATA[tmp = fiduciary.entity_creation_date.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="287a793f-3077-471a-a539-49478fee2b89">
      <Description><![CDATA[Estate or Trust: Creation Date MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.entity_creation_date.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3420894006527476152"><![CDATA[tmp = fiduciary.entity_creation_date.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="07569b24-4a1a-4a0f-b276-63b045ab080b">
      <Description><![CDATA[Estate or Trust: Creation Date - MM|Estate or Trust: Creation Date - DD|Estate or Trust: Creation Date - YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2703621746880958786"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="1201899662673284390"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="22f1ab53-cf05-481d-9405-4ad1d73bd302">
      <Description><![CDATA[Estate or Trust: Creation Date - MM|Estate or Trust: Creation Date - DD|Estate or Trust: Creation Date - YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Creation Date in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13651930128396665535"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16357311655980591242"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="78facae1-a11c-4da7-b0f0-fc85befbefd1">
      <Description><![CDATA[Estate or Trust: Creation Date Day with alpha suffix|Estate or Trust: Creation Date alpha month|Estate or Trust: Creation Date 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Creation Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a creation date of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The Fiduciary profile validates entity_creation_date for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10310853810991318402"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15389930540938778631"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="209ffe9b-f5d7-4cce-8a38-b049ce597122">
      <Description><![CDATA[Estate or Trust: Creation Date 2 digit day|Estate or Trust: Creation Date alpha month|Estate or Trust: Creation Date 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Creation Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a creation date of 02/09/1940 would be displayed
// as '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// The Fiduciary profile validates entity_creation_date for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13832209535773371635"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="16100635638067892927"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="38a0e861-77a4-4312-bdc3-c6d9ccf38d79">
      <Description><![CDATA[Estate or Trust: Creation Date alpha month with a space + Day with alpha suffix|Estate or Trust: Creation Date: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
      </TagMap>
      <JS><![CDATA[//
// Creation Date displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a creation date of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The Fiduciary profile validates entity_creation_date for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4698272082934829466"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13763769655129997415"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10257306399191035324"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="2448459782661002122"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11970861773356344260"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4366060240368450936"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.entity_creation_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="22d2c834-b7af-4e53-beea-eebd1ef3313d">
      <Description><![CDATA[Estate or Trust: Decedent Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_decendents.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="17442333719458248099"><![CDATA[if ((!fiduciary.entity_type_decendents.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc88c33c-7f9b-495d-a504-0d7c4472de7b">
      <Description><![CDATA[Estate or Trust: Simple Trust Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_simple.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11191009695422808286"><![CDATA[if ((!fiduciary.entity_type_simple.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="47321083-dfd3-4a2b-b08e-92eed3378b9c">
      <Description><![CDATA[Estate or Trust: Complex Trust Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_complex.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6912476249989464826"><![CDATA[if ((!fiduciary.entity_type_complex.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="134f8fbe-ec30-44f4-bca8-6b63cd605a8f">
      <Description><![CDATA[Estate or Trust: Qualified Disability Trust Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_disability.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="16253280279544295403"><![CDATA[if ((!fiduciary.entity_type_disability.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="91503cf0-e76b-494b-a762-d4533031495f">
      <Description><![CDATA[Estate or Trust: ESBT (S Portion Only) Checkbox]]></Description>
      <JS><![CDATA[//
// Electing Small Business Trust:
//
if ((!fiduciary.entity_type_esbt.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="9850555317152849245"><![CDATA[if ((!fiduciary.entity_type_esbt.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9cc8a259-152b-4896-bbed-7466ee46c3aa">
      <Description><![CDATA[Estate or Trust: Grantor Type Trust Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_grantor.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="15300300039471769824"><![CDATA[if ((!fiduciary.entity_type_grantor.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ef8a8ac8-03a5-45f1-a8f8-eb622b8ac5f8">
      <Description><![CDATA[Estate or Trust: Bankruptcy Estate - Ch. 7  Checkbox]]></Description>
      <JS><![CDATA[//
// Liquidation:
//
if ((!fiduciary.entity_type_bankruptcy_ch7.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12730490069075246747"><![CDATA[if ((!fiduciary.entity_type_bankruptcy_ch7.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fdf1478d-d159-46de-8b14-559b22862bc0">
      <Description><![CDATA[Estate or Trust: Bankruptcy Estate - Ch. 11  Checkbox]]></Description>
      <JS><![CDATA[//
// Reorganization:
//
if ((!fiduciary.entity_type_bankruptcy_ch11.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13500071717393377899"><![CDATA[if ((!fiduciary.entity_type_bankruptcy_ch11.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8fe73852-52a5-47b6-ac5f-b213de28fd4d">
      <Description><![CDATA[Estate or Trust: Bankrupt Estate - Checkbox if Ch. 7 or Ch. 11 Bankruptcy Estate is checked]]></Description>
      <JS><![CDATA[//
// A bankruptcy estate is created when an individual debtor files for bankruptcy under Chapter 7 (liquidation) or
// Chapter 11 (reorganization), so we check for either type.
//
if ((!(fiduciary.entity_type_bankruptcy_ch7 + fiduciary.entity_type_bankruptcy_ch11).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="16809081517967667385"><![CDATA[if ((!(fiduciary.entity_type_bankruptcy_ch7 + fiduciary.entity_type_bankruptcy_ch11).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e90c6a71-2070-4eda-a7b3-0705dbaf291b">
      <Description><![CDATA[Estate or Trust: Pooled Income Fund Checkbox]]></Description>
      <JS><![CDATA[if ((!fiduciary.entity_type_pooled_income.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6671291137136080006"><![CDATA[if ((!fiduciary.entity_type_pooled_income.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="14e7ec30-45f7-466d-8075-66182041a138">
      <Description><![CDATA[Estate or Trust: Checkbox on form if Qualified Disability Trust or Pooled Income Fund or ESBT (S Portion Only) is checked]]></Description>
      <JS><![CDATA[if ((!(fiduciary.entity_type_disability + fiduciary.entity_type_pooled_income + fiduciary.entity_type_esbt).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="7638577304754616746"><![CDATA[if ((!(fiduciary.entity_type_disability + fiduciary.entity_type_pooled_income + fiduciary.entity_type_esbt).toString().trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="62c3bd25-f7aa-46bb-998d-4dd7908c3231">
      <Description><![CDATA[Decedent or Donor Name: First Name and Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentFirstNameAndMI</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_first_name_and_mi.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10002457059686226817"><![CDATA[tmp = fiduciary.decedent_first_name_and_mi.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dca138dd-a9de-45a6-9cb0-467687ff1b64">
      <Description><![CDATA[Decedent or Donor Name: Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4686305529715957261"><![CDATA[tmp = fiduciary.decedent_last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e811db18-572b-47ca-9963-1484659ba75c">
      <Description><![CDATA[Decedent or Donor Name: First Name + Middle Initial + Last Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentFirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.DecedentLastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (fiduciary.decedent_first_name_and_mi) + " " + (fiduciary.decedent_last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1606951708855757333"><![CDATA[tmp = ("" + (fiduciary.decedent_first_name_and_mi) + " " + (fiduciary.decedent_last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1614475380351181474"><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + " " + fiduciary.decedent_last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13326774574354408040"><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + ' ' + fiduciary.decedent_last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="97e3d947-7627-4983-9285-2f2bdf60c4c3">
      <Description><![CDATA[Decedent or Donor Name: Last Name + First Name + Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentLastName</Tag>
        <Tag var="box1_1">Fiduciary.DecedentFirstNameAndMI</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (fiduciary.decedent_last_name) + " " + (fiduciary.decedent_first_name_and_mi) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="14462471569517817590"><![CDATA[tmp = ("" + (fiduciary.decedent_last_name) + " " + (fiduciary.decedent_first_name_and_mi) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="16674078276533692454"><![CDATA[tmp = (fiduciary.decedent_last_name + " " + fiduciary.decedent_first_name_and_mi).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15727941798973127303"><![CDATA[tmp = (fiduciary.decedent_last_name + ' ' + fiduciary.decedent_first_name_and_mi).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e02e071e-9243-49b7-9223-bed0726710f3">
      <Description><![CDATA[Decedent or Donor Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentAddress</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16016267575144355914"><![CDATA[tmp = fiduciary.decedent_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4bd425ae-771b-422c-804e-d3ca4a879e71">
      <Description><![CDATA[Decedent or Donor Address: Street Address + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentAddress</Tag>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9335239279324182117"><![CDATA[tmp = (fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dfeb2cd4-7ba2-4888-8d21-b36205d4c6c8">
      <Description><![CDATA[Decedent or Donor Address: Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentAddress</Tag>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9495160981248286809"><![CDATA[tmp = (fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="240736eb-6647-429d-9568-10674db600ab">
      <Description><![CDATA[Decedent or Donor Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14105605277929830900"><![CDATA[tmp = fiduciary.decedent_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e9f974d4-c950-45f5-8383-7127251b3d62">
      <Description><![CDATA[Decedent or Donor Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15943056129002361065"><![CDATA[tmp = ((fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5f11e2fd-afeb-4725-9f35-f5110e30f7c7">
      <Description><![CDATA[Decedent or Donor Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16832555786763366060"><![CDATA[tmp = ((fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="42da07b2-9bd2-44cd-8c5d-68616e77a3b7">
      <Description><![CDATA[Decedent or Donor Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17827634877873935173"><![CDATA[tmp = fiduciary.decedent_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f6281e38-3ee9-4423-9227-a6e27ca9140f">
      <Description><![CDATA[Decedent or Donor Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1289630342147856477"><![CDATA[tmp = (fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cbd62c9c-2095-4755-9658-48f4b6fce67d">
      <Description><![CDATA[Decedent or Donor Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11988384683316009871"><![CDATA[tmp = fiduciary.decedent_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="99ff65ac-2bbe-4a63-8d6f-b5e650af4dab">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747321944295660659"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="304f4cb7-502e-4dfc-a565-d14804c88be1">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747321944295660659"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ae7165a-4445-43cc-8f92-516a70122fd7">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6134557414496558294"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="398595998808894761"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="13428152274957006740"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dbec4ec1-f836-476f-a3b1-79de06d1f7bd">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7976999832670938036"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="9764486106232049170"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="15007195042659964805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc2a5206-923c-4064-a346-ae35fb4c7e41">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3747321944295660659"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="981f2d62-722a-453a-b366-acc6ee611f2b">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="17008542406647769008"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2174724550963925466"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11766187246554682487"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
        <JSExpression hash="5369844675264949353"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = fiduciary.decedent_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="63cd8d29-de06-4e15-a41b-18519bdd5831">
      <Description><![CDATA[Decedent or Donor Address: Zip Code 5 digits|Decedent or Donor Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
        <Tag var="box1_2">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(fiduciary.decedent_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = fiduciary.decedent_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="11774534816500821535"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(fiduciary.decedent_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = fiduciary.decedent_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1694bc15-c655-4d22-a9a5-8adcb51956a2">
      <Description><![CDATA[Decedent or Donor: First Name + Middle Initial + Last Name + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentFirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.DecedentLastName</Tag>
        <Tag var="box1_1">Fiduciary.DecedentAddress</Tag>
        <Tag var="box1_1">Fiduciary.DecedentCity</Tag>
        <Tag var="box1_1">Fiduciary.DecedentState</Tag>
        <Tag var="box1_1">Fiduciary.DecedentZip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + ' ' + fiduciary.decedent_last_name + ' ' + fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4108883744877123803"><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + ' ' + fiduciary.decedent_last_name + ' ' + fiduciary.decedent_address + ' ' + (fiduciary.decedent_city.trim().isEmpty() ? '' : fiduciary.decedent_city + ', ') + fiduciary.decedent_state + ' ' + fiduciary.decedent_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="04d32fe5-6c87-44b0-843b-acbe09898589">
      <Description><![CDATA[Decedent or Donor: Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3341964604705379140"><![CDATA[tmp = fiduciary.decedent_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a5c6263-23e1-4ee5-aebb-c38d4369cfb2">
      <Description><![CDATA[Decedent or Donor Phone: 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="14445219886255526195"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="113b7da1-4467-4499-8a56-9e8ffa26f9b0">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7024731922696595006"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9504865762480835626"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1393587673204542898"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="42c4d52e-6459-48bf-b063-093f7757cd94">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17875896090881428960"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3341214863982747404"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6574127225694728688"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f9eced90-b4b2-4833-bc48-0fd7d0d4bb4e">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5399286816304645404"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15249104116174579241"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8408271447326543833"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9795ecbf-d4fd-4b70-8118-0b42e6569870">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13731924022801365105"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9580049385994904430"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12118374974336679936"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1643a34f-cabd-446e-98d3-11780d44c20f">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="806138467879346029"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10215284071127101723"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6576979002018293999"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="11bfc745-8edf-4a80-abb0-51d7d7604b38">
      <Description><![CDATA[Decedent or Donor Phone: Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14767978862773919028"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1428063662873627202"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5819190235690579103"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a93d43ac-9c6e-4724-b054-9734891091d1">
      <Description><![CDATA[Decedent or Donor Phone: 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8847951950534411965"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2964535272558137702"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2500348208253184743"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10728849807942180301"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9644421064863556816"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="11fb3aff-bfd8-479f-bccc-50a098119dca">
      <Description><![CDATA[Decedent or Donor Phone: Area Code|Decedent or Donor Phone: 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9442980983466684274"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7384598757027262854"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15841746842950557426"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0935a3c1-a49f-487b-a39c-c323c16e3d36">
      <Description><![CDATA[Decedent or Donor Phone: Area Code|Decedent or Donor Phone: 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4300667881477809167"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3702076685332909874"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15400856230581514303"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d9721848-ae13-482c-9670-23731e00fbb3">
      <Description><![CDATA[Decedent or Donor Phone: Area Code in parenthesis|Decedent or Donor Phone: 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="864600207308221778"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2177121727451426242"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7801723074627111870"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="260d2309-84aa-4b7f-96ed-f01fb1d96e16">
      <Description><![CDATA[Decedent or Donor Phone: Area Code in parenthesis|Decedent or Donor Phone: 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7544341466228454393"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2289129963362632586"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="18180342459692723248"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5ca16ac1-2fd3-4393-9585-7b7348a3d394">
      <Description><![CDATA[Decedent or Donor Phone: Area Code|Decedent or Donor Phone: 3 digit exchange|Decedent or Donor Phone: 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_3">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="6437537761003945912"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="68e99595-be95-4282-a29c-bdfd617b2755">
      <Description><![CDATA[Decedent or Donor Phone: Area Code in parenthesis|Decedent or Donor Phone: 3 digit exchange|Decedent or Donor Phone: 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_2">Fiduciary.DecedentPhone</Tag>
        <Tag var="box1_3">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4637618065026189506"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="12543661352242335899"><![CDATA[condvar = (fiduciary.decedent_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17917601146888146448"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9571971990571849105"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3938732041602293722"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = fiduciary.decedent_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f2a73a03-43ec-4e54-9cf6-aa182a6b59cd">
      <Description><![CDATA[Decedent or Donor Name + Phone Number: [First_MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentFirstNameAndMI</Tag>
        <Tag var="box1_1">Fiduciary.DecedentLastName</Tag>
        <Tag var="box1_1">Fiduciary.DecedentPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (fiduciary.decedent_first_name_and_mi) + " " + (fiduciary.decedent_last_name) + " " + (fiduciary.decedent_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="3125187958663050066"><![CDATA[tmp = ("" + (fiduciary.decedent_first_name_and_mi) + " " + (fiduciary.decedent_last_name) + " " + (fiduciary.decedent_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1323704204389516605"><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + " " + fiduciary.decedent_last_name + " " + fiduciary.decedent_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8386642497205484873"><![CDATA[tmp = (fiduciary.decedent_first_name_and_mi + ' ' + fiduciary.decedent_last_name + ' ' + fiduciary.decedent_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb472dcc-1542-4224-b59d-a07993d3ed21">
      <Description><![CDATA[Decedent or Donor: SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3611651312628827522"><![CDATA[tmp = fiduciary.decedent_ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="88226ed2-524d-42df-9652-14e7e3f006b5">
      <Description><![CDATA[Decedent or Donor SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="11739376320012266245"><![CDATA[tmp = fiduciary.decedent_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="5763071443362082282"><![CDATA[tmp = fiduciary.decedent_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3f2e078f-02f4-429a-9115-ca0d9431207a">
      <Description><![CDATA[Decedent or Donor SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentSSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2047979786927077310"><![CDATA[tmp = fiduciary.decedent_ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb32a7c7-b064-4f79-9f15-0a2ee2d001ca">
      <Description><![CDATA[Decedent or Donor SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = fiduciary.decedent_ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11739376320012266245"><![CDATA[tmp = fiduciary.decedent_ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="5763071443362082282"><![CDATA[tmp = fiduciary.decedent_ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f5676839-0665-42e6-a814-7cc620149e63">
      <Description><![CDATA[Decedent or Donor SSN: First 3 digits|Decedent or Donor SSN: Next 2 digits|Decedent or Donor SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentSSN</Tag>
        <Tag var="box1_2">Fiduciary.DecedentSSN</Tag>
        <Tag var="box1_3">Fiduciary.DecedentSSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.decedent_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14435902178346519799"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.decedent_ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="6107758432125012419"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(fiduciary.decedent_ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="75c75009-07cd-4078-93d7-f8de8a0dedc4">
      <Description><![CDATA[Decedent or Donor: DOB]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_dob.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6602707817245425504"><![CDATA[tmp = fiduciary.decedent_dob.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="29f1241e-561c-4f6b-aaba-3ce94394b97e">
      <Description><![CDATA[Decedent or Donor DOB: MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dob.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.decedent_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="9202729501674837417"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dob.trim());]]></JSExpression>
      <JSExpression hash="9156267273458148101"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.decedent_dob.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1f68ff6e-99d2-4313-a80a-f65e00d31c60">
      <Description><![CDATA[Decedent or Donor DOB: MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dob.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.decedent_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="9202729501674837417"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dob.trim());]]></JSExpression>
      <JSExpression hash="17960031386669271282"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.decedent_dob.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="43719de0-56ca-46fa-a028-11fe3e5418e4">
      <Description><![CDATA[Decedent or Donor DOB: MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dob.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.decedent_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="9202729501674837417"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dob.trim());]]></JSExpression>
      <JSExpression hash="10817733137552493869"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.decedent_dob.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f9c92770-f721-4a52-b671-002ca703d0de">
      <Description><![CDATA[Decedent or Donor DOB: MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dob.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.decedent_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="9202729501674837417"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dob.trim());]]></JSExpression>
      <JSExpression hash="2534747370599684470"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.decedent_dob.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6e0f77a2-d282-47d2-bcfa-20127c4f3f6b">
      <Description><![CDATA[Decedent or Donor DOB: MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dob.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10062934096777343873"><![CDATA[tmp = fiduciary.decedent_dob.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fcc109ab-1ea3-4539-808e-472de9f518f5">
      <Description><![CDATA[Decedent or Donor DOB: MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dob.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3778052697527741004"><![CDATA[tmp = fiduciary.decedent_dob.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5bcab040-ecd2-4dc3-9a46-27b2670739a1">
      <Description><![CDATA[Decedent or Donor DOB: MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dob.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17900433856433193004"><![CDATA[tmp = fiduciary.decedent_dob.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="68151786-2f93-4169-a543-cf4665d6f1ae">
      <Description><![CDATA[Decedent or Donor DOB: MM|Decedent or Donor DOB: DD|Decedent or Donor DOB: YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13660123426573660029"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10510163922695905864"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1ef1edfe-515f-4008-8a38-063dfa9b4180">
      <Description><![CDATA[Decedent or Donor DOB: MM|Decedent or Donor DOB: DD|Decedent or Donor DOB: YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of birth in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1058074254721483482"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16154994500566504548"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="edc048ef-cdec-43b1-a8ed-ced4834e2e53">
      <Description><![CDATA[Decedent or Donor DOB: Day with alpha suffix|Decedent or Donor DOB: alpha month|Decedent or Donor DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// The Fiduciary profile validates decedent_dob for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10246606241521127342"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5699045578610699543"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="84fcdc4e-e5c2-49f7-93aa-bed4ea1cf40b">
      <Description><![CDATA[Decedent or Donor DOB: 2 digit day|Decedent or Donor DOB: alpha month|Decedent or Donor DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date of 02/09/1940 would be displayed as
// '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// The Fiduciary profile validates decedent_dob for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10863708969250715239"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8268038966389157333"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b389dda4-37c6-4d28-8bda-47ae2d03706c">
      <Description><![CDATA[Decedent or Donor DOB: alpha month with a space + Day with alpha suffix|Decedent or Donor DOB: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOB</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOB</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOB displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// The Fiduciary profile validates decedent_dob for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15364364898528154277"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10882426635389602131"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4279252169656326670"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14717205625886597987"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4151185414576104750"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="17821685280711752654"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bbedc28c-3bb5-44f6-a518-9b629bb267bc">
      <Description><![CDATA[Decedent or Donor: DOD]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[tmp = fiduciary.decedent_dod.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18131410384388083252"><![CDATA[tmp = fiduciary.decedent_dod.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4e625c8f-af25-4ab2-846a-b6e6547ab1d2">
      <Description><![CDATA[Decedent or Donor DOD: MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dod.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.decedent_dod.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="16921075623079567652"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dod.trim());]]></JSExpression>
      <JSExpression hash="16120702197851760775"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = fiduciary.decedent_dod.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a79ec508-6ac1-4b38-8a87-ddadfe207a4d">
      <Description><![CDATA[Decedent or Donor DOD: MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dod.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.decedent_dod.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="16921075623079567652"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dod.trim());]]></JSExpression>
      <JSExpression hash="11519852585054245798"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = fiduciary.decedent_dod.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1ff9aad2-3244-40e3-9a8b-5f41ddb311e3">
      <Description><![CDATA[Decedent or Donor DOD: MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dod.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.decedent_dod.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="16921075623079567652"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dod.trim());]]></JSExpression>
      <JSExpression hash="16891993211371362986"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = fiduciary.decedent_dod.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3256d5f5-1406-4f0e-9456-b06c1f0bfa4b">
      <Description><![CDATA[Decedent or Donor DOD: MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(fiduciary.decedent_dod.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.decedent_dod.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="16921075623079567652"><![CDATA[myMatches = myReg.exec(fiduciary.decedent_dod.trim());]]></JSExpression>
      <JSExpression hash="68069572926614210"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = fiduciary.decedent_dod.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e162360f-8a3f-4685-8e58-fb90bb3207a4">
      <Description><![CDATA[Decedent or Donor DOD: MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dod.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="990136505152854270"><![CDATA[tmp = fiduciary.decedent_dod.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9fc61bb4-5f70-46d0-9516-ae2cbd1345fd">
      <Description><![CDATA[Decedent or Donor DOD: MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dod.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1126331834985286474"><![CDATA[tmp = fiduciary.decedent_dod.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3c98e107-7205-48c8-ba0d-d2a991f47fa0">
      <Description><![CDATA[Decedent or Donor DOD: MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = fiduciary.decedent_dod.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7435272207016367903"><![CDATA[tmp = fiduciary.decedent_dod.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ad30e582-cde3-4f26-b324-c244bf2bbb67">
      <Description><![CDATA[Decedent or Donor DOD: MM|Decedent or Donor DOD: DD|Decedent or Donor DOD: YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12845609315175615213"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2291459467779853749"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0f42fd3b-7c80-486b-bbf7-9140a52423d0">
      <Description><![CDATA[Decedent or Donor DOD: MM|Decedent or Donor DOD: DD|Decedent or Donor DOD: YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display decedent date of death in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16879018568413988970"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16088986048520025437"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9e00db81-97d2-4c51-ba34-f668b69fb077">
      <Description><![CDATA[Decedent or Donor DOD: Day with alpha suffix|Decedent or Donor DOD: alpha month|Decedent or Donor DOD: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOD displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// The Fiduciary profile validates decedent_dod for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="258769796653776511"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="16468238384556540408"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="168bba45-f107-4597-809b-2e7760be96cd">
      <Description><![CDATA[Decedent or Donor DOD: 2 digit day|Decedent or Donor DOD: alpha month|Decedent or Donor DOD: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOD displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date of 02/09/1940 would be displayed as
// '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// The Fiduciary profile validates decedent_dod for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6268210774004513914"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="7414541051556495282"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6c0eb6c3-2aa6-4f8b-98c8-dfdfe21738c7">
      <Description><![CDATA[Decedent or Donor DOD: alpha month with a space + Day with alpha suffix|Decedent or Donor DOD: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Decedent DOD displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// The Fiduciary profile validates decedent_dod for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5897309751009164426"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="6403638249481000116"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10163598744840673685"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="16843897497504877054"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10375991564947544636"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14949931134302043127"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(fiduciary.decedent_dod.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ae991d24-4143-4127-8e81-b1a5e16b2f27">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date:
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d397c497-a1f6-4b40-8d72-ce1461658c09">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM/DD/YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = myMatches[1] + myMatches[3];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression hash="8067299091450501652"><![CDATA[if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = myMatches[1] + myMatches[3];
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c49ba293-f18e-4414-a68e-aa9d7cefdbc5">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM-DD-YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression hash="17833271874935998088"><![CDATA[if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fa23cce6-c99f-4e5e-ac41-7736e2d0a705">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM DD YY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression hash="8806327690233220138"><![CDATA[if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0035bc52-55d0-430d-937d-d7ab23d6f6f4">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MMDDYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression hash="6657567508203148834"><![CDATA[if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(tmp)) != null) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ccde8bf0-83ff-4e61-8fd0-bba2a6b4d0c8">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM-DD-YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6346916784251259957"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c24e12d5-cc48-45ee-b88b-46e53a072f2c">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM DD YYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7556998723803224456"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bf8f242f-cc5e-477d-8f19-be2c729b0d6d">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MMDDYYYY format]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date - Display date as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation for these dates.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17165566733236483990"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a146ed25-570a-43c1-b7ff-1fd6c79f0508">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: DD|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: YY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Decedent DOD or Estate/Trust Creation Date in 3 boxes using a 2 digit year.
// There is no default. This will handle a 2 or 4 digit year if the profile changes.
// The profile currently has a MM/DD/YYYY validation.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/[^0-9]/g);
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(tmp)) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8842760510122530629"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4358763208371757669"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17247365040547253169"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(tmp)) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8ef323cc-1138-4131-8645-511764b1fcd1">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: MM|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: DD|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: YYYY]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display Decedent DOD or Estate/Trust Creation Date in 3 boxes using a 4 digit year.
// There is no default. This will handle a 2 or 4 digit year if the profile changes.
// The profile currently has a MM/DD/YYYY validation.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/[^0-9]/g);
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(tmp)) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8842760510122530629"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4358763208371757669"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="1660162249211435400"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(tmp)) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7d9c7c68-c024-4e8c-b82d-d141bb28e581">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: Day with alpha suffix|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: alpha month|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date:
//
// Display the date in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// The Fiduciary profile validates the date fields for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9075727503137434158"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5066777718851580674"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0a2db706-7c20-454a-a0bb-55fe03ed508e">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: 2 digit day|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: alpha month|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_3">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_3">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date:
//
// Display the date in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date of 02/09/1940 would be displayed as
// '09', 'February', '1940'.  Keep in mind that the form could be
// field traited upper case.
//
// The Fiduciary profile validates the date fields for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4514571827415835679"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8956694465204526749"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f33391a9-ab8b-45b7-8086-1aa629027422">
      <Description><![CDATA[(Decedent or Donor) DOD else (Estate or Trust) Creation Date: alpha month with a space + Day with alpha suffix|(Decedent or Donor) DOD else (Estate or Trust) Creation Date: 4 digit year]]></Description>
      <TagMap>
        <Tag var="box1_1">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_1">Fiduciary.DecedentDOD</Tag>
        <Tag var="box1_2">Fiduciary.EntityCreationDate</Tag>
        <Tag var="box1_2">Fiduciary.DecedentDOD</Tag>
      </TagMap>
      <JS><![CDATA[//
// Form wants a Decedent DOD or Estate/Trust Creation Date:
//
// Display the date in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// The Fiduciary profile validates the date fields for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="1933614334734688109"><![CDATA[tmp = (fiduciary.decedent_dod.trim().isEmpty() ? fiduciary.entity_creation_date : fiduciary.decedent_dod).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16897019752422157642"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="409721935306048770"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1871212099472937800"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5510290255603183991"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5695945237348098976"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5052238858734947867"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
  </Profile>
  <Profile name="Preparer">
    <JSBlock id="cae67ef2-6fbd-4954-b373-7d76733cdffd">
      <Description><![CDATA[Preparer Name: First]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirstName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.first_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17378896969969023994"><![CDATA[tmp = preparer.first_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dadb007b-ea1c-44db-9a98-063e3d501644">
      <Description><![CDATA[Preparer Name: Middle Initial]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.middle_initial.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12147771586531048845"><![CDATA[tmp = preparer.middle_initial.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8804bb4d-50cd-4541-91c5-3650e04dbee8">
      <Description><![CDATA[Preparer Name: Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.last_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15043021807325984087"><![CDATA[tmp = preparer.last_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aff54d9c-911a-49cd-9394-eb268c364730">
      <Description><![CDATA[Preparer Name: First + Middle Initial + Last]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="5824365256222247062"><![CDATA[tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12984275219937789474"><![CDATA[tmp = (preparer.first_name + " " + preparer.middle_initial + " " + preparer.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15329557273992011225"><![CDATA[tmp = (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="da36ffd2-3bce-4e05-aba8-a9ea0c69328c">
      <Description><![CDATA[Preparer Firm Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.firm_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12475750032165436603"><![CDATA[tmp = preparer.firm_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="972954ba-3e1a-4ea0-9515-92f86399e59d">
      <Description><![CDATA[Preparer Name: Firm Name else (First + Middle Initial + Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box for name: Firm name has precedence over preparer name.
//
tmp = (preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ') : preparer.firm_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="20103689859591812"><![CDATA[tmp = (preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ') : preparer.firm_name).toString().trim();]]></JSExpression>
        <JSExpression hash="228435630685228503"><![CDATA[tmp = (preparer.firm_name.trim().isEmpty() ? (preparer.first_name + " " + preparer.middle_initial + "  " + preparer.last_name).squeeze(' ') : preparer.firm_name).toString().trim();]]></JSExpression>
        <JSExpression hash="2978958030366121970"><![CDATA[tmp = (preparer.firm_name.trim().isEmpty() ? (preparer.first_name + ' ' + preparer.middle_initial + '  ' + preparer.last_name).squeeze(' ') : preparer.firm_name).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ccd2fc5a-dabe-478f-92c8-96c41cd7e2b4">
      <Description><![CDATA[Preparer Address: Street Address]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Address</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5588924625933136824"><![CDATA[tmp = preparer.address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="067d497e-8dce-4a31-9a67-65251328c8d0">
      <Description><![CDATA[Preparer Address: Street Address + City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Address</Tag>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8223655225418982593"><![CDATA[tmp = (preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af30e70d-8577-4fbb-a8e7-2d6cf59ce6b7">
      <Description><![CDATA[Preparer Address: Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Address</Tag>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3796869165586491503"><![CDATA[tmp = (preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e0b5953f-156e-4719-ac2b-fbde16f06c0a">
      <Description><![CDATA[Preparer Address: City]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.City</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16921844130614169360"><![CDATA[tmp = preparer.city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="23543045-d69b-48b1-b859-be19670df2ac">
      <Description><![CDATA[Preparer Address: City + State]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8466651154347421450"><![CDATA[tmp = ((preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="617caa73-824c-4481-91d7-b531ca163750">
      <Description><![CDATA[Preparer Address: City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6973258755951158499"><![CDATA[tmp = ((preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a992af7-8eff-4149-8444-327ac56b611e">
      <Description><![CDATA[Preparer Address: State]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.State</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5709242515553511554"><![CDATA[tmp = preparer.state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ed7ce433-65f1-4757-8dd0-111e54b846af">
      <Description><![CDATA[Preparer Address: State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12760103014607123389"><![CDATA[tmp = (preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="81d509a6-8706-4e5a-b0cf-6ee8de2b1659">
      <Description><![CDATA[Preparer Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5427834039506330695"><![CDATA[tmp = preparer.zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="415770b7-10c7-4a26-83e1-095b423959ba">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12586206790904932468"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d413a45d-1db0-47c7-88be-6280e9475bc8">
      <Description><![CDATA[Preparer Address: Zip Code 9 digits, no hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12586206790904932468"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cfe97779-19d5-4f4c-a1d7-4eda2f84a610">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11139622314142691304"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="3058220359260030722"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="4554209218939719092"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="78cd92cc-9319-421a-a7aa-259aa7e9aaa7">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15074983994713924036"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="5856247366904442795"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="10643943171998358560"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="35acf2f3-c976-463d-871b-2a53b712f0c9">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12586206790904932468"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="587b17fb-fd08-464d-a86b-4347f6644c76">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = preparer.zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="14822398471808328511"><![CDATA[myMatches = myReg.exec(preparer.zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11690860127066517899"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="3842228113163043562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
        <JSExpression hash="4224010633416511458"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = preparer.zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc3b77d4-75da-4557-9f87-49625bfcda95">
      <Description><![CDATA[Preparer Address: Zip Code 5 digits|Preparer Address: Zip Code 4 digit extension]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
        <Tag var="box1_2">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(preparer.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = preparer.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="6608580355945979384"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(preparer.zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = preparer.zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5a9a4992-f0f2-4ed2-9c5c-7d149f0d613d">
      <Description><![CDATA[Preparer: (Firm Name else First Name + Middle Initial + Last Name) + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.Address</Tag>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + "  " + (preparer.last_name) + "") : preparer.firm_name) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="362020813761133049"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + "  " + (preparer.last_name) + "") : preparer.firm_name) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1638756628960862185"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? (preparer.first_name + " " + preparer.middle_initial + "  " + preparer.last_name) : preparer.firm_name) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12209950691427715882"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? (preparer.first_name + ' ' + preparer.middle_initial + '  ' + preparer.last_name) : preparer.firm_name) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a1cfb0ef-f065-4bbe-a018-5325a439e448">
      <Description><![CDATA[Preparer: Self Employed Checkbox]]></Description>
      <JS><![CDATA[//
// Checking a box if self employed:
//
if (!preparer.self_employed.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="18223851824965427719"><![CDATA[if (!preparer.self_employed.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="136d2de0-604a-4f2f-86bf-d8d2d87fc87e">
      <Description><![CDATA[Preparer: (First Name + Middle Initial + Last Name) [if Self Employed] else Firm Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[//
// Firm's name or yours if self employed - no check box for self employed.
//
tmp = (preparer.self_employed.trim().isEmpty() ? preparer.firm_name : ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ')).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4722441974459374658"><![CDATA[tmp = (preparer.self_employed.trim().isEmpty() ? preparer.firm_name : ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ')).toString().trim();]]></JSExpression>
        <JSExpression hash="6846293558777424982"><![CDATA[tmp = (preparer.self_employed.trim().isEmpty() ? preparer.firm_name : (preparer.first_name + "  " + preparer.middle_initial + "  " + preparer.last_name).squeeze(' ')).toString().trim();]]></JSExpression>
        <JSExpression hash="4599153413401134718"><![CDATA[tmp = (preparer.self_employed.trim().isEmpty() ? preparer.firm_name : (preparer.first_name + '  ' + preparer.middle_initial + '  ' + preparer.last_name).squeeze(' ')).toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f526e26d-6dc0-41a2-bc83-56ee7f4f8a99">
      <Description><![CDATA[Preparer: (First Name + Middle Initial + Last Name) [if Self Employed] else Firm Name|Preparer: Self Employed Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[//
// 2 boxes - a name box and a check box for self employed:
//
// Firm's name or yours if self employed - also check a box to indicate self employed.
//
if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ').toString().trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12486441236534808140"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "").squeeze(' ').toString().trim();
}]]></JSExpression>
        <JSExpression hash="4969606040142925417"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = (preparer.first_name + "  " + preparer.middle_initial + "  " + preparer.last_name).squeeze(' ').toString().trim();
}]]></JSExpression>
        <JSExpression hash="4472285209120233364"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = (preparer.first_name + '  ' + preparer.middle_initial + '  ' + preparer.last_name).squeeze(' ').toString().trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e93c5019-1654-4305-a473-7af225083b31">
      <Description><![CDATA[Preparer: Name - First Name + Middle Initial + Last Name|Preparer: Self Employed Checkbox|Preparer: (First Name + Middle Initial + Last Name) [if Self Employed] else Firm Name]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_3">Preparer.FirmName</Tag>
        <Tag var="box1_3">Preparer.FirstName</Tag>
        <Tag var="box1_3">Preparer.MiddleInitial</Tag>
        <Tag var="box1_3">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[//

//
// Make sure this code section stays intact in order to capture the name boxes properly.
//
// 3 boxes - a name box for the Preparer, a name box for the Firm (Preparer's name if Self Employed),
// and a check box for indicating Self Employed [so it is possible that the Preparer's name may appear twice]:
//
tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
}
//

//]]></JS>
      <JSExpression>
        <JSExpression hash="5824365256222247062"><![CDATA[tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12984275219937789474"><![CDATA[tmp = (preparer.first_name + " " + preparer.middle_initial + " " + preparer.last_name).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15329557273992011225"><![CDATA[tmp = (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
      <JSExpression hash="13801415045855839638"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name.trim();
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0737414a-891c-4f68-9814-0af6d01a622b">
      <Description><![CDATA[Preparer: ((First Name + Middle Initial + Last Name) [if Self Employed] else Firm Name) + Street Address + City + State + Zip]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.Address</Tag>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and address in one box - Preparer's name if self employed, else Firm's name:
//
tmp = ((preparer.self_employed.trim().isEmpty() ? preparer.firm_name : ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + " " + (preparer.last_name) + "")) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="11690706949643410521"><![CDATA[tmp = ((preparer.self_employed.trim().isEmpty() ? preparer.firm_name : ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + " " + (preparer.last_name) + "")) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="4859609726864744384"><![CDATA[tmp = ((preparer.self_employed.trim().isEmpty() ? preparer.firm_name : (preparer.first_name + "  " + preparer.middle_initial + " " + preparer.last_name)) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12566937351798166885"><![CDATA[tmp = ((preparer.self_employed.trim().isEmpty() ? preparer.firm_name : (preparer.first_name + '  ' + preparer.middle_initial + ' ' + preparer.last_name)) + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="35119667-1981-4352-8357-2840ba744b9e">
      <Description><![CDATA[Preparer: ((First Name + Middle Initial + Last Name) [if Self Employed] else Firm Name) + Street Address + City + State + Zip|Preparer: Self Employed Checkbox]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.Address</Tag>
        <Tag var="box1_1">Preparer.City</Tag>
        <Tag var="box1_1">Preparer.State</Tag>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[//
// 2 boxes - a name and address box and a check box for self employed:
//
// Name and address in one box - Preparer's name if self employed, else Firm's name; plus check
// a box if self employed:
//
if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name;
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "");
}
tmp = (tmp + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="11701318428572291887"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name;
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = ("" + (preparer.first_name) + "  " + (preparer.middle_initial) + "  " + (preparer.last_name) + "");
}]]></JSExpression>
        <JSExpression hash="10671267454789035829"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name;
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = (preparer.first_name + "  " + preparer.middle_initial + "  " + preparer.last_name);
}]]></JSExpression>
        <JSExpression hash="13806904954628960180"><![CDATA[if (preparer.self_employed.trim().isEmpty()) {
    tmp = preparer.firm_name;
}
else {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', 'X');
    tmp = (preparer.first_name + '  ' + preparer.middle_initial + '  ' + preparer.last_name);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="872536510530237435"><![CDATA[tmp = (tmp + ' ' + preparer.address + ' ' + (preparer.city.trim().isEmpty() ? '' : preparer.city + ', ') + preparer.state + ' ' + preparer.zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8496291a-f158-4193-9985-250d1a968727">
      <Description><![CDATA[Preparer PTIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.ptin.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11428868423226502514"><![CDATA[tmp = preparer.ptin.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="846803b0-ec65-483d-8a42-804894aafe92">
      <Description><![CDATA[Preparer FEIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13594933532155618946"><![CDATA[tmp = preparer.fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="372950ea-4e5e-4083-beaf-14f232d4deb1">
      <Description><![CDATA[Preparer FEIN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN displayed as 999999999:
//
tmp = preparer.fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="45747166348946942"><![CDATA[tmp = preparer.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="8923161051047122358"><![CDATA[tmp = preparer.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="79e13e96-c487-42cf-b41a-74beb809326a">
      <Description><![CDATA[Preparer FEIN: Space instead of a hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN displayed as 99 9999999:
//
tmp = preparer.fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13788802863270345713"><![CDATA[tmp = preparer.fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d1a9d2c1-cb39-4456-a74d-af2a428698c5">
      <Description><![CDATA[Preparer FEIN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = preparer.fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="45747166348946942"><![CDATA[tmp = preparer.fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="8923161051047122358"><![CDATA[tmp = preparer.fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="886433e0-dc4e-4027-a9e9-c90df6cef410">
      <Description><![CDATA[Preparer FEIN: First 2 digits|Preparer FEIN: Next 7 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8416896929243657775"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="14749871175017006161"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7df6081f-63db-4a14-bd9d-61b3e96c1e30">
      <Description><![CDATA[Preparer SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.ssn.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15473842750663173820"><![CDATA[tmp = preparer.ssn.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="603e29a8-9663-423e-8cda-4b4f87131c57">
      <Description><![CDATA[Preparer SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN displayed as 999999999:
//
tmp = preparer.ssn.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9330425111172110589"><![CDATA[tmp = preparer.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="13681513644971397858"><![CDATA[tmp = preparer.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9984f140-f479-416e-8355-b84eadc093ae">
      <Description><![CDATA[Preparer SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN displayed as 999 99 9999:
//
tmp = preparer.ssn.trim().gsub('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10950471692303294127"><![CDATA[tmp = preparer.ssn.trim().gsub('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af162a47-f54c-4a2e-b39e-f5e33b75775f">
      <Description><![CDATA[Preparer SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
tmp = preparer.ssn.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9330425111172110589"><![CDATA[tmp = preparer.ssn.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="13681513644971397858"><![CDATA[tmp = preparer.ssn.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e8bbed83-9434-40c2-8c06-28305fb0c3da">
      <Description><![CDATA[Preparer SSN: First 3 digits|Preparer SSN: Next 2 digits|Preparer SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.SSN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5536032460290346017"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8426868668518793023"><![CDATA[if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="73f5d497-dd70-433f-a839-ffdd0bd8aec3">
      <Description><![CDATA[Preparer - PTIN else FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13547103370772129735"><![CDATA[if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c9023872-3401-4252-a515-6856139ea5d6">
      <Description><![CDATA[Preparer - PTIN else (FEIN else SSN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in 1 box - PTIN [P99999999] else FEIN else SSN [999999999]:
//
if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}
tmp = tmp.delete(/[^P0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13547103370772129735"><![CDATA[if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}]]></JSExpression>
      <JSExpression hash="13743081882904980818"><![CDATA[tmp = tmp.delete(/[^P0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7f5a1fde-e9c6-4bda-9b19-e8f41480372f">
      <Description><![CDATA[Preparer - PTIN else (FEIN else SSN: Spaces instead of hyphens)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in 1 box - PTIN [P99999999] else FEIN [99 9999999] else SSN [999 99 9999]:
//
// PTIN, SSN, and FEIN are validated in the profile as P99999999, 999-99-9999, and
// 99-9999999 respectively, so we will .strip and substitute a space char for a hyphen
// where applicable.
//
if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}
tmp = tmp.toString().trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13547103370772129735"><![CDATA[if (!preparer.ptin.trim().isEmpty()) {
    tmp = preparer.ptin;
}
else if (!preparer.fein.trim().isEmpty()) {
    tmp = preparer.fein;
}
else {
    tmp = preparer.ssn;
}]]></JSExpression>
      <JSExpression hash="2627330803604867054"><![CDATA[tmp = tmp.toString().trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c2496c38-58dd-4cc0-afb6-65eb928d13cc">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_4">Preparer.PTIN</Tag>
        <Tag var="box1_4">Preparer.FEIN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN, an FEIN or a SSN, but there are separate check boxes to indicate which is being used:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="3713031824135503412"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5c851a23-1bd8-4fff-81d5-6bf411f1343f">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else (FEIN else SSN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_4">Preparer.PTIN</Tag>
        <Tag var="box1_4">Preparer.FEIN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999], an FEIN or a SSN [999999999], but
// there are separate check boxes to indicate which is being used:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14137337139557421234"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}]]></JSExpression>
        <JSExpression hash="11416013770478681264"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="27a32549-f131-4e7d-9436-b12e161ceaae">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else (FEIN else SSN: Spaces instead of hyphens)]]></Description>
      <TagMap>
        <Tag var="box1_4">Preparer.PTIN</Tag>
        <Tag var="box1_4">Preparer.FEIN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999], an FEIN [99 9999999], or a SSN [999 99 9999],
// but there are separate check boxes to indicate which is being used:
//
// PTIN, SSN, and FEIN are validated in the profile as P99999999, 999-99-9999, and
// 99-9999999 respectively, so we will .strip and substitute a space char for a hyphen
// where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="3713031824135503412"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8bd772d4-e947-489f-835d-0e446e5f4fad">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN|Preparer SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box else FEIN in another box else SSN in another box:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="5978154483192886361"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="786e1e16-aa62-4739-a5c7-f96d6c6b63ac">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN: 9 digits only|Preparer SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else FEIN in another box else SSN in another box
// [999999999]:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17519383760010100902"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="6000895863749108435"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="26140ad7-05ea-4174-aa28-94cd9e66b2e8">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN: Spaces instead of hyphens|Preparer SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else FEIN in another box [99 9999999] else SSN
// in another box [999 99 9999]:
//
// PTIN, SSN, and FEIN are validated in the profile as P99999999, 999-99-9999, and
// 99-9999999 respectively, so we will .strip and substitute a space char for a hyphen
// where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].replace("-", " ")));
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", (myMatches[1].gsub("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="8773034810636634338"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].replace("-", " ")));
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", (myMatches[1].gsub("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40b0af9d-75fd-49aa-ae81-5ecfa6ab7c77">
      <Description><![CDATA[Preparer PTIN|Preparer - FEIN [If no PTIN]: First 2 digits|Preparer - FEIN [If no PTIN]: Last 7 digits|Preparer - SSN [If no FEIN]: First 3 digits|Preparer - SSN [If no FEIN]: Next 2 digits|Preparer - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
        <Tag var="box1_5">Preparer.SSN</Tag>
        <Tag var="box1_6">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - PTIN in 1 box else FEIN broken into two boxes else SSN broken into 3 boxes:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_6", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4002877601085572478"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_6", myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15636337750438952286"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_6", myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3ad7df98-ffdd-404b-9884-25ad9750a5bc">
      <Description><![CDATA[Preparer - PTIN else FEIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein : preparer.ptin).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16412570217135815198"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein : preparer.ptin).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="25a36b57-bb72-4a1e-a85b-457fa675ec99">
      <Description><![CDATA[Preparer - PTIN else (FEIN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - PTIN [P99999999] else FEIN [999999999]:
//
tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein : preparer.ptin).delete(/[^P0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3371318119467778667"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein : preparer.ptin).delete(/[^P0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c1652145-88e4-4ccb-bc3f-28b445661718">
      <Description><![CDATA[Preparer - PTIN else (FEIN: Space instead of hyphen)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in 1 box - PTIN [P99999999] else FEIN [99 9999999]:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip, and for the FEIN we will substitute a space char for a hyphen.
//
tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein.replace("-", " ") : preparer.ptin).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="37727102018748589"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.fein.replace("-", " ") : preparer.ptin).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3243ae22-dc5e-4b0c-a226-fb698d62867f">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - PTIN else FEIN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN or a FEIN, but there are separate check boxes
// to indicate which is being used:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="2807805310047429045"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1293bda0-d261-42f9-acfc-2b3a065580af">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - PTIN else (FEIN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999] or an FEIN [999999999], but
// there are separate check boxes to indicate which is being used:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6348696363713935592"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="17485897809316973202"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="565a146e-ea93-4e72-aa41-0310ec1edf4c">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - FEIN Checkbox|Preparer - PTIN else (FEIN: Space instead of hyphen)]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999] or an FEIN [99 9999999],
// but there are separate check boxes to indicate which is being used:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip and substitute a space char for a hyphen where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].replace("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="2807805310047429045"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="3327344423551032095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].replace("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f9a90fb4-fb19-40b6-b028-82df98e67308">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN [If no PTIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box else FEIN in another box:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="16754225141896370872"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="80d2145f-ab4e-4b79-a667-630bb86d5d50">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN [If no PTIN]: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else FEIN in another box [999999999]:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11025204511966077291"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="6258197996213094950"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ccfb1333-1074-4be8-82bc-8fddc4b73e66">
      <Description><![CDATA[Preparer PTIN|Preparer FEIN [If no PTIN]: Space instead of hyphen]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else FEIN in another box [99 9999999]:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip and substitute a space char for a hyphen where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].replace("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="11750692546830325195"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].replace("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="22df0948-b35b-40de-8b90-7c869ca5024b">
      <Description><![CDATA[Preparer PTIN|Preparer - FEIN [If no PTIN]: First 2 digits|Preparer - FEIN [If no PTIN]: Last 7 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.FEIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - PTIN in 1 box else FEIN broken into two boxes:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4580270770512314284"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="5652677505065358492"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7cb77437-b074-4bb7-bc88-1dea0c2779ea">
      <Description><![CDATA[Preparer - PTIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn : preparer.ptin).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14666563292330139635"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn : preparer.ptin).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9aaf4a61-6a48-460f-bc58-de9f8645268a">
      <Description><![CDATA[Preparer - PTIN else (SSN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - PTIN [P99999999] else SSN [999999999]:
//
tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn : preparer.ptin).delete(/[^P0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6267477124374543969"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn : preparer.ptin).delete(/[^P0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c679adf5-df5a-45b6-9da3-acdae681c79b">
      <Description><![CDATA[Preparer - PTIN else (SSN: Spaces instead of hyphens)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - PTIN [P99999999] else SSN [999 99 9999]:
//
// PTIN and SSN are validated in the profile as P99999999 and 999-99-9999 respectively,
// so we will .strip, and for the SSN we will substitute a space char for the hyphens.
//
tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn.gsub("-", " ") : preparer.ptin).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16783142238035571587"><![CDATA[tmp = (preparer.ptin.trim().isEmpty() ? preparer.ssn.gsub("-", " ") : preparer.ptin).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="591c2202-2292-4d0b-a6bc-ae322b022329">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN or a SSN, but there are separate check boxes
// to indicate which is being used:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="17753200470453727815"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="612f28bb-360a-46db-be4f-f4952c5075b9">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else (SSN: 9 digits only)]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999] or an SSN [999999999], but
// there are separate check boxes to indicate which is being used:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6654666842168687080"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="13320316058612338414"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e1109e2-707f-41b6-9e6e-b075d45cdfbf">
      <Description><![CDATA[Preparer - PTIN Checkbox|Preparer - SSN Checkbox|Preparer - PTIN else (SSN: Spaces instead of hyphens)]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.PTIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either a PTIN [P99999999] or an SSN [999 99 9999],
// but there are separate check boxes to indicate which is being used:
//
// PTIN and SSN are validated in the profile as P99999999 and 999-99-9999 respectively,
// so we will .strip and substitute a space char for the hyphens where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="17753200470453727815"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="000a28ad-24e7-40df-bba8-fe29d29abb7f">
      <Description><![CDATA[Preparer PTIN|Preparer SSN [If no PTIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box else SSN in another box:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="9470510270624814614"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d604dd3a-fda9-4801-8fed-f92e06fade3e">
      <Description><![CDATA[Preparer PTIN|Preparer SSN [If no PTIN]: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else SSN in another box [999999999]:
//
if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15861494714407592240"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="11409215746125957973"><![CDATA[if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6d5dc143-391b-4a71-8670-a8b80319b82c">
      <Description><![CDATA[Preparer PTIN|Preparer SSN [If no PTIN]: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: PTIN in 1 box [P99999999] else SSN in another box [999 99 9999]:
//
// PTIN and SSN are validated in the profile as P99999999 and 999-99-9999 respectively,
// so we will .strip and substitute a space char for a hyphen where applicable.
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="15870748411964166500"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f1b6eb74-706a-46e7-aa82-4b8a89ee4a37">
      <Description><![CDATA[Preparer PTIN|Preparer - SSN [If no PTIN]: First 3 digits|Preparer - SSN [If no PTIN]: Next 2 digits|Preparer - SSN [If no PTIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - PTIN in 1 box else SSN broken into three boxes:
//
if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15144360890830151467"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="17472090639336856850"><![CDATA[if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="478a967f-ab60-4e09-9bd7-094720889cf1">
      <Description><![CDATA[Preparer - FEIN else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5594200459589515060"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="774bf4df-9774-42b5-a79d-05ba6b6a4642">
      <Description><![CDATA[Preparer - (FEIN: 9 digits only) else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - FEIN [999999999] else PTIN [P99999999]:
//
tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein).delete(/[^P0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4310154224371588798"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein).delete(/[^P0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="216effe0-ccd2-45c0-8063-6e4310a6cc02">
      <Description><![CDATA[Preparer - (FEIN: Space instead of hyphen) else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box -  FEIN [99 9999999] else PTIN [P99999999]:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip, and for the FEIN we will substitute a space char for a hyphen.
//
tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein.replace("-", " ")).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12410142054386329269"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ptin : preparer.fein.replace("-", " ")).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="83bde857-4cdf-4f06-b4b6-66a758dc1289">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - PTIN Checkbox|Preparer - FEIN else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a PTIN, but there are separate check boxes
// to indicate which is being used:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="5766470491539380519"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="799bdae1-1ded-48fe-a71b-c533f0c065e5">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - PTIN Checkbox|Preparer - (FEIN: 9 digits only) else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN [999999999] or a PTIN [P99999999], but
// there are separate check boxes to indicate which is being used:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16057977339259833290"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="3185206192414733037"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="108c3a81-09db-4c66-86a9-670f462e05f7">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - PTIN Checkbox|Preparer - (FEIN: Space instead of hyphen) else PTIN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a PTIN [P99999999],
// but there are separate check boxes to indicate which is being used:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip and substitute a space char for a hyphen where applicable.
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].replace("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="5766470491539380519"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="3327344423551032095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].replace("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ec7fde39-f601-4ba5-9ca7-87fb21cb1794">
      <Description><![CDATA[Preparer FEIN|Preparer PTIN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else PTIN in another box:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="17687879198809742762"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0312ba8-6eb6-43c2-b8d6-38eb750da89c">
      <Description><![CDATA[Preparer FEIN: 9 digits only|Preparer PTIN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [999999999] else PTIN in another box [P99999999]:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7269537514357160176"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="14490101768359666951"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/)) {
    myMatches = preparer.ptin.delete(/[^P0-9]/g).toString().match(/^(P\d{8})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b09ebeac-c479-4035-8135-002e39d47b29">
      <Description><![CDATA[Preparer FEIN: Space instead of hyphen|Preparer PTIN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else PTIN in another box [P99999999]:
//
// PTIN and FEIN are validated in the profile as P99999999 and 99-9999999 respectively,
// so we will .strip and substitute a space char for a hyphen where applicable.
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="8066966548764917408"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="147bd763-47aa-4c97-8927-63094107b2c4">
      <Description><![CDATA[Preparer - FEIN: First 2 digits|Preparer - FEIN: Last 7 digits|Preparer PTIN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.PTIN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else PTIN in 1 box:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14149366132225902258"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="6440348799805290077"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if (preparer.ptin.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ptin.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2d2ca301-f990-48da-bb10-48a64d8d4300">
      <Description><![CDATA[Preparer - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13178336193401919709"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8c37dc52-5077-4730-bf71-0c93e02b0ce8">
      <Description><![CDATA[Preparer - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - FEIN else SSN [999999999]:
//
tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6462616915763770747"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="7339825750322456717"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f259b5e5-c42e-42a1-ae59-69247f6ba967">
      <Description><![CDATA[Preparer - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Display in one box - FEIN [99 9999999] else SSN [999 99 9999]:
//
tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).toString().trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7222890820574634954"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).toString().trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a6aa6013-98b2-4dbc-88d9-df65e4f4ea29">
      <Description><![CDATA[Preparer - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// The last 4 digits of an FEIN, or, if empty, a SSN:
//
tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6462616915763770747"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="7339825750322456717"><![CDATA[tmp = (preparer.fein.trim().isEmpty() ? preparer.ssn : preparer.fein).delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="82373249-dc3a-4a9a-8e1b-0da8d2a1c286">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - FEIN else SSN]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN, but there are separate check boxes to indicate which is being used:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="10387088458041411606"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6dd9ec52-5913-4ad8-a8e9-9d0e44f46f66">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - FEIN else SSN: 9 digits only]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [999999999], but there are separate check boxes
// to indicate which is being used:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11819875275316645863"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="9817510024371541442"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7379b247-57d0-4499-9fc2-ff389fd008db">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - FEIN else SSN: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a SSN [999 99 9999], but there are separate
// check boxes to indicate which is being used:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="10387088458041411606"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a0ecea73-aa89-4ef2-989b-6e1a186c9285">
      <Description><![CDATA[Preparer - FEIN Checkbox|Preparer - SSN Checkbox|Preparer - FEIN else SSN: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_3">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [last 4 digits], but there are separate check boxes
// to indicate which is being used:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="18198196349763826685"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
        <JSExpression hash="5036574857624917884"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b5721ae-5e3b-4083-baaa-0b8a8972b26b">
      <Description><![CDATA[Preparer - FEIN|Preparer - SSN [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="11090786146598418455"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e0a3a614-c195-41b6-aa58-0bbd652438a1">
      <Description><![CDATA[Preparer - FEIN 9 digits only|Preparer - SSN 9 digits only [If no FEIN]]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box [999999999]:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3620445410501001227"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="10744934029242625991"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^(\d{9})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="da12d941-0d62-4a5b-bf16-36743826d0f1">
      <Description><![CDATA[Preparer - FEIN: Space instead of hyphen|Preparer - SSN [If no FEIN]: Spaces instead of hyphens]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else SSN in another box [999 99 9999]:
//
if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}
myMatches = null;]]></JS>
      <JSExpression hash="18329107053061562795"><![CDATA[if (preparer.fein.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.fein.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", (myMatches[1].replace("-", " ")));
}
else if (preparer.ssn.trim().toString().match(/^(.+)$/)) {
    myMatches = preparer.ssn.trim().toString().match(/^(.+)$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[1].gsub("-", " ")));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="482945d0-eca9-42d4-af2e-c1a26ca1d612">
      <Description><![CDATA[Preparer - FEIN: Last 4 digits|Preparer - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box - last 4 digits:
//
if (preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14705525483277549252"><![CDATA[if (preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/[^0-9]/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
        <JSExpression hash="9244333358475937643"><![CDATA[if (preparer.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.fein.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (preparer.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/)) {
    myMatches = preparer.ssn.delete(/\-/g).toString().match(/^\d{5}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9309024a-fd31-4858-a7f4-905f2c1848d4">
      <Description><![CDATA[Preparer - FEIN: First 2 digits|Preparer - FEIN: Last 7 digits|Preparer - SSN [If no FEIN]: First 3 digits|Preparer - SSN [If no FEIN]: Next 2 digits|Preparer - SSN [If no FEIN]: Last 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_2">Preparer.FEIN</Tag>
        <Tag var="box1_3">Preparer.SSN</Tag>
        <Tag var="box1_4">Preparer.SSN</Tag>
        <Tag var="box1_5">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else SSN broken into 3 boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="21051227887759252"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="12089780161703245770"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(preparer.fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
}
else if ((myMatches = /^(\d{3})(\d{2})(\d{4})$/.exec(preparer.ssn.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="32daeeba-db9d-48c3-a5fc-97b0660343d0">
      <Description><![CDATA[Preparer Name+ID Number: (Firm Name else (First + Middle Initial + Last)) + (PTIN else FEIN else SSN)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.PTIN</Tag>
        <Tag var="box1_1">Preparer.FEIN</Tag>
        <Tag var="box1_1">Preparer.SSN</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name [Firm else Preparer] and ID Number [PTIN/FEIN/SSN] in one box:
//
tmp1 = (preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "") : preparer.firm_name);
if ((!preparer.ptin.trim().isEmpty())) {
    tmp2 = preparer.ptin;
}
else if ((!preparer.fein.trim().isEmpty())) {
    tmp2 = preparer.fein;
}
else {
    tmp2 = preparer.ssn;
}
tmp = ("" + (tmp1) + " " + (tmp2) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="9284801531586919535"><![CDATA[tmp1 = (preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "") : preparer.firm_name);]]></JSExpression>
        <JSExpression hash="16780576765731659911"><![CDATA[tmp1 = (preparer.firm_name.trim().isEmpty() ? (preparer.first_name + " " + preparer.middle_initial + " " + preparer.last_name) : preparer.firm_name);]]></JSExpression>
        <JSExpression hash="3500587963729898787"><![CDATA[tmp1 = (preparer.firm_name.trim().isEmpty() ? (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name) : preparer.firm_name);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="633425392891454296"><![CDATA[if ((!preparer.ptin.trim().isEmpty())) {
    tmp2 = preparer.ptin;
}
else if ((!preparer.fein.trim().isEmpty())) {
    tmp2 = preparer.fein;
}
else {
    tmp2 = preparer.ssn;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="458641736533638219"><![CDATA[tmp = ("" + (tmp1) + " " + (tmp2) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="1042792078226543115"><![CDATA[tmp = (tmp1 + " " + tmp2).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="5116684704475512502"><![CDATA[tmp = (tmp1 + ' ' + tmp2).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="45880228-9f29-473f-b8ec-bd9286abf69e">
      <Description><![CDATA[Preparer Phone: Home Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15285088458925469457"><![CDATA[tmp = preparer.phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c6d9cbe-8c11-4f8b-8a1b-3e3a56ac95ba">
      <Description><![CDATA[Preparer Phone: Home Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="16503913777327930087"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7d13628e-ecca-4d63-8ca4-73a22ad349f5">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8397197485022961518"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="14693202360643159135"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="13297051224872744951"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8a0d6ad8-2fa8-45a4-a84c-b6f08bf75c01">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14919634840152730997"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="4179783485385717306"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9049653772669765115"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="986e716c-d678-4aa2-9dbb-5188bd23a4bd">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14539970481318682901"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="3178496689625416326"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="13666400824604736154"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7056b983-d528-4dc3-8e9c-0e4bb0ce5722">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2023668012036547326"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11745959188986506935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="9493468753519901931"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d47094c0-5467-47a2-86e8-ed0b693e6a82">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6777061666701342573"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="6889827348750912952"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="18321724339585578398"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1982c4ea-f873-4867-a5fd-6c7b8cfe4244">
      <Description><![CDATA[Preparer Phone: Home Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17042555843528435756"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="11153090506471689052"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="13650697899818362241"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="77a71379-90e8-4193-9549-3a85227cca7b">
      <Description><![CDATA[Preparer Phone: Home Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4244400189312371719"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13705138284244808925"><![CDATA[myMatches = myReg.exec(preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3383502859941165793"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="2551547988515444154"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
        <JSExpression hash="13694132702690390505"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="eaae90ae-8fcd-4faa-a6fc-8473afc979b4">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code|Preparer Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6573473598841270595"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16716361813563321289"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16080034379176436037"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="929ef174-90a4-4e59-8e58-f13eb06fb9cb">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code|Preparer Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4342917095250458985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9988568224936486120"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6547742317876973411"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9c8fb645-afe2-45e3-b15b-c4df3cf1477a">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code in parenthesis|Preparer Phone: Home Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16233565618166745433"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13516358757918487856"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1713478752190683698"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="12eca820-61b8-460e-80c1-5e54d15bae09">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code in parenthesis|Preparer Phone: Home Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12723812818753630823"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2513424017493087857"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2879188864981893681"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="52274637-ca21-470b-bf23-9665c293f211">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code|Preparer Phone: Home Phone 3 digit exchange|Preparer Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="4216080225057370369"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7668ef20-edb6-4803-9950-2085a046c295">
      <Description><![CDATA[Preparer Phone: Home Phone Area Code in parenthesis|Preparer Phone: Home Phone 3 digit exchange|Preparer Phone: Home Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9192032257211869682"><![CDATA[condvar = (preparer.phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17919637793652162225"><![CDATA[condvar = (preparer.phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10348202985798383928"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11530895046988374085"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15082619524525894995"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = preparer.phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="cb2ae517-bb83-4d24-a2ad-8adedecf9ca1">
      <Description><![CDATA[Preparer Phone: Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.work_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18280290121118296549"><![CDATA[tmp = preparer.work_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1e3a0818-fc32-48cd-8963-fafe34551722">
      <Description><![CDATA[Preparer Phone: Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="14841016682065982181"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="688177a8-0da0-4855-9351-f825412309f0">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12586447903872788935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7016164582205886874"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7885280647809966890"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c029214d-831f-4d90-b1e0-a77626c42984">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15824219584264837334"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7597557801801780599"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="361834710953941237"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0b7f094f-8aa0-41ab-9d05-e7cea8e90ded">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9541086867020086301"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2501290118866917931"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="993427591707854077"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="91b7e840-fbd8-4544-bcb5-e7ff7f9eb9a8">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8285941167483605431"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15147976743175740331"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9480314072427010518"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d08b54aa-ded5-4f13-a140-d9386092a839">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15517132186252988296"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5982061357361256250"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13063044027718321432"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="96fae92f-2941-46a7-87a3-ba3f9ae7bc62">
      <Description><![CDATA[Preparer Phone: Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12624828843502153796"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7968313008810416631"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17785812430069574457"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e0691f46-d203-4e29-9928-8c54b86cdbe9">
      <Description><![CDATA[Preparer Phone: Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5545341357459880668"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="10839545627208687935"><![CDATA[myMatches = myReg.exec(preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15581694869552142940"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10912497378831510779"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17973859121393559958"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="010365bf-ff35-4a56-a23b-859b280d0720">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code|Preparer Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17661500585038505038"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="809771840689314035"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2996916103340229628"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="15cfa36e-0462-40fd-9eba-78a3e9bb0b41">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code|Preparer Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1281254955528235314"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10849207279680485606"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5885722269953883790"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b3b83498-946d-40d2-83e7-adbac5a9b087">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code in parenthesis|Preparer Phone: Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13010375321290669561"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16036348764944628335"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6700376180006907049"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bb205139-0b18-4aed-83a2-7b92e0ff9d2f">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code in parenthesis|Preparer Phone: Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6640920324231005298"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2610701001084256619"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11811044053894921185"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="39fb3d6d-b808-4110-bed6-70a717ab4bd2">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code|Preparer Phone: Work Phone 3 digit exchange|Preparer Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="10471930691067696450"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="444c2dca-68ed-47a3-902d-3f6c989d9ae8">
      <Description><![CDATA[Preparer Phone: Work Phone Area Code in parenthesis|Preparer Phone: Work Phone 3 digit exchange|Preparer Phone: Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.work_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17775602587583910785"><![CDATA[condvar = (preparer.work_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17901467411893070165"><![CDATA[condvar = (preparer.work_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11076229019531513984"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5218633637502482680"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10886867351087706305"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = preparer.work_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e53ada51-6cb6-41f6-913d-4d58911f0bbd">
      <Description><![CDATA[Preparer Phone: Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.mobile_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9763257371426398046"><![CDATA[tmp = preparer.mobile_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2d716eb9-2ac9-4c0b-83f5-98bcf39d19fc">
      <Description><![CDATA[Preparer Phone: Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="17724345269642956306"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="208477bc-1fdd-49f8-86a6-39f59b4b586c">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1786833252366348678"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="279482198095110488"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6166334594784525041"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3116ae53-437e-4150-8670-500fb9a48290">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16819880864640201666"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2758361617956819807"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1405057331619093628"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e4b596d9-18cc-4173-a727-62f9a26313d1">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13953777871441949651"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7448813831650628638"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1852555452795979423"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4717d4f0-a896-4872-b3b3-2e288c0c15e5">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12344292608841471641"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2506556528587174178"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5870113463968250886"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="707aaf7e-d38e-4d09-8d20-07825aa47ec8">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11225133082713503211"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3481841158111435082"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16183040132749633953"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08b824ee-c421-4113-bd9d-f848a11e8c2c">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6462756021199989289"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17893355981481694470"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7101488331174719453"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b5fd2fb-54b0-4ec9-8008-b6c9b8a9b419">
      <Description><![CDATA[Preparer Phone: Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7694111016360195812"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16724391856949614000"><![CDATA[myMatches = myReg.exec(preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4281149732683485301"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="447434233857283054"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9885639122752297423"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2d5dc71e-0447-410f-85ae-77325fe3227c">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code|Preparer Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2768848661741316751"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1009663283468085340"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10129870468152532227"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="faa6ef4b-69f6-49a2-8d08-1eec606a18a5">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code|Preparer Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16160875828178274851"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4654835637073580558"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="301331004921039199"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="85597330-6628-4b94-bf38-7c579ccff601">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code in parenthesis|Preparer Phone: Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4474022591956875420"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="654511597802829790"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11536078454416518155"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d9aa8b28-f886-4614-85fc-58e4326e9af6">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code in parenthesis|Preparer Phone: Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3776961623949836627"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10219012189651124981"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7348023770164016265"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="604dfc1b-8159-42cc-91a3-1595cb215110">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code|Preparer Phone: Mobile Phone 3 digit exchange|Preparer Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="13606094987192566656"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="93f74eab-29cf-47c0-9bf4-f5c40f9ba1f4">
      <Description><![CDATA[Preparer Phone: Mobile Phone Area Code in parenthesis|Preparer Phone: Mobile Phone 3 digit exchange|Preparer Phone: Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (preparer.mobile_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16806376292414083533"><![CDATA[condvar = (preparer.mobile_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16355353035608580730"><![CDATA[condvar = (preparer.mobile_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6129967724978484017"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13459088981730678430"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9767417340644690200"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = preparer.mobile_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="680ff29c-db64-45db-9847-c305613c9371">
      <Description><![CDATA[Preparer Phone: Home/Work Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3c8309c8-1081-45d1-9306-1808c6faeff5">
      <Description><![CDATA[Preparer Phone: Home/Work Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="168db500-a271-467a-8a6d-e254a8d14182">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b13684c2-17fc-47f2-a17b-788c2274d894">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9b04091c-e03b-4200-bb77-1fc7a37333e0">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71b5ddb6-64f1-4c04-99e0-32fb93f45d8c">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="27ac7966-4838-4bcc-a02c-33e737389e23">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="102474aa-2dc7-4a25-8ce7-ca23bb2088bc">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="14c0c623-569f-49c4-b5cf-8deb9768f26f">
      <Description><![CDATA[Preparer Phone: Home/Work Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="349d006e-160f-4eab-a4ec-b075f4f2713a">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code|Preparer Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="060f827b-91b3-45c5-bb23-964744846220">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code|Preparer Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="4a09d971-8d71-4f27-8d21-a491160810ef">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code in parenthesis|Preparer Phone: Home/Work Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3c0c22cf-ca49-4250-8341-c02912dafe53">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code in parenthesis|Preparer Phone: Home/Work Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="df63bde0-958f-4cc7-9fc3-e20e4e8eef7e">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code|Preparer Phone: Home/Work Phone 3 digit exchange|Preparer Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ff2c04c6-6ef0-4d00-a6c3-0b456844b33c">
      <Description><![CDATA[Preparer Phone: Home/Work Phone Area Code in parenthesis|Preparer Phone: Home/Work Phone 3 digit exchange|Preparer Phone: Home/Work Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="9858785245685532632"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="80340dad-e1d5-4478-bcd9-90cd5aa31fef">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f8c559e9-63f0-472d-99aa-b3ce41b54a1b">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7142c7aa-7a97-462e-8647-d3e307b08158">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c42b6fa6-b6a3-41e5-9cfd-2b1b738632ba">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="167a8b17-ea3a-4341-9505-12e23ff62c20">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f4af9413-6d48-4aed-8a5d-9adff1159a6c">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="65d26c00-45ba-425c-8f40-da2c5e47d380">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="22b56974-8f6a-4add-b363-c1973024ad63">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5213b26f-9f6d-439b-802f-d7b7ea45783a">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3c7d7e6c-3ea9-47e9-925d-51db09000802">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code|Preparer Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0f557db7-cc77-4ebd-84b8-8f0499de90a1">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code|Preparer Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="762be136-f3ce-4b9b-afda-5336a19a277d">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f3f5e0e3-afcb-4081-9664-8a4e093d2d20">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8fa826a3-644d-461d-9798-1daf0028e8ea">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code|Preparer Phone: Home/Mobile Phone 3 digit exchange|Preparer Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8404d1f-fc22-436f-9cd4-17723244b831">
      <Description><![CDATA[Preparer Phone: Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Home/Mobile Phone 3 digit exchange|Preparer Phone: Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="707896568249856692"><![CDATA[tmp = (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone).toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d05b4ed2-ad06-4339-a47a-e63c5334c7c0">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="580df719-0ac4-4d37-8388-29c225f48e0c">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone 10 digits only]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14871845304538747252"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
        <JSExpression hash="7891487983632308815"><![CDATA[if ((myMatches = /^([0-9]{10})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = myMatches[1];
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="25f3c9d3-9fcf-4c7c-a7db-fa3bdec768e6">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12457329303159207552"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11135913602089443558"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9848878002511927161"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11676431364720823874"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10323179227534227141"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4848072231429328007"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="46e9f7d6-b296-42d3-b8ff-9d1863ad3a79">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3488519446801703206"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="6162888490170773797"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1185561448607099026"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15968278267111601155"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="10689853344833568189"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14314031509979315925"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ad437693-949f-4973-bfaa-ea904e7017e1">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="809039931928925250"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="13372372990797383085"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15087690814741575069"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13439075379458016313"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="4079346817216361546"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3757526096570873782"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd89cf45-18b3-4780-8c4d-83d2599217dc">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14466795251784858499"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="1060417696798998582"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3849942335686295482"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10170824710281863119"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="749615566728689933"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134370914324484745"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b4889bc9-a7eb-4fec-ba56-bd673202bac1">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18076376124645009819"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="11555817408939680491"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5257724931220046052"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8119731926051374090"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="14149899397689556672"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5121448208188688223"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a0cbd959-d3fe-416d-9d2f-7aac1a4c2fe7">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5338731071050311468"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="17241603034067263303"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14657004370597150184"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9150081566369225937"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="9154106643378210220"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="229636950427021093"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c370e39-d8c8-40be-bd0b-a9fbb1028486">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1205625382802851035"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7256608714443783561"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11599982818960362426"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/[^0-9]/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="9719261434960653187"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + "" + (myMatches[3]) + "");
}]]></JSExpression>
        <JSExpression hash="7198163118594269078"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + "-" + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5744440551795466123"><![CDATA[if ((myMatches = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/.exec(tmp.delete(/\-/g))) != null) {
    tmp = (myMatches[1] + '-' + (myMatches[2] ? myMatches[2] + '-' : '') + myMatches[3]);
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aa03fcdb-f1d0-4711-8fde-927116de8017">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="115764992166471805"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9532342041149727123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7267715794449078985"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d0471672-fb97-413c-a233-6d42eda6a65b">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4707496827543371352"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3877263360728111491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17497462887628646938"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d0e1dd43-46c2-42c1-bf7a-a24d1481c1ce">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange, space, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15593890178334698559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1191986248872067917"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15522325366301907003"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="88bf18b7-c078-4182-bbb1-e2ba02af5c3a">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5166590753239309538"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3645730520989563665"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4666024757700801396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6c02a35b-3782-485c-9ec4-bc2631cb8c6f">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange|Preparer Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3944218909973675080"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="12bbf4de-a046-48ed-a4a7-09a7d8bcd9c0">
      <Description><![CDATA[Preparer Phone: Work/Home/Mobile Phone Area Code in parenthesis|Preparer Phone: Work/Home/Mobile Phone 3 digit exchange|Preparer Phone: Work/Home/Mobile Phone 4 digit number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_2">Preparer.WorkPhone</Tag>
        <Tag var="box1_2">Preparer.Phone</Tag>
        <Tag var="box1_2">Preparer.MobilePhone</Tag>
        <Tag var="box1_3">Preparer.WorkPhone</Tag>
        <Tag var="box1_3">Preparer.Phone</Tag>
        <Tag var="box1_3">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
condvar = (tmp.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="13105927300551259094"><![CDATA[condvar = (tmp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15152852545942013693"><![CDATA[condvar = (tmp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6023714387199102462"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5083525523362019194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10718349363048336372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="78dbe4e9-a0be-4514-95e1-d836558b3b84">
      <Description><![CDATA[Preparer Name + Phone Number: [First+MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}
tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17901612108475002900"><![CDATA[if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7461124352296069403"><![CDATA[tmp = ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="18211675951493736597"><![CDATA[tmp = (preparer.first_name + " " + preparer.middle_initial + " " + preparer.last_name + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7412999825235881948"><![CDATA[tmp = (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="04f247e1-2dce-4203-a8cb-c17a18c2d1c9">
      <Description><![CDATA[Preparer Firm Name + Phone Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}
tmp = ("" + (preparer.firm_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17901612108475002900"><![CDATA[if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5460749236577980497"><![CDATA[tmp = ("" + (preparer.firm_name) + " " + (casetmp) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11957161958817247424"><![CDATA[tmp = (preparer.firm_name + " " + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15625348509544204900"><![CDATA[tmp = (preparer.firm_name + ' ' + casetmp).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="39a4ddb0-9c94-4c58-8608-031033c08817">
      <Description><![CDATA[Preparer Name + Phone Number: [Firm Name else First+MI+Last] + Phone]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
      </TagMap>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}
tmp = ((preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "") : preparer.firm_name) + (" " + (casetmp) + "")).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17901612108475002900"><![CDATA[if ((!preparer.work_phone.trim().isEmpty())) {
    casetmp = preparer.work_phone;
}
else if ((!preparer.phone.trim().isEmpty())) {
    casetmp = preparer.phone;
}
else {
    casetmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6907813346260484989"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? ("" + (preparer.first_name) + " " + (preparer.middle_initial) + " " + (preparer.last_name) + "") : preparer.firm_name) + (" " + (casetmp) + "")).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="923516337061065657"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? (preparer.first_name + " " + preparer.middle_initial + " " + preparer.last_name) : preparer.firm_name) + (" " + casetmp)).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13288235213393303861"><![CDATA[tmp = ((preparer.firm_name.trim().isEmpty() ? (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name) : preparer.firm_name) + (' ' + casetmp)).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="800ec1f7-cca3-4097-86ea-85b14b1cf3cd">
      <Description><![CDATA[Preparer Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10003658982550349715"><![CDATA[tmp = preparer.fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="03004f56-6e4d-4f13-877d-678fd215d4c3">
      <Description><![CDATA[Preparer Phone+Fax: Home Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (preparer.phone) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="15699510268824864485"><![CDATA[tmp = ("" + (preparer.phone) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="8951662085499945577"><![CDATA[tmp = (preparer.phone + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="6596735020652571337"><![CDATA[tmp = (preparer.phone + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d1b21b5e-d790-4688-bd5f-0f8bf24b017d">
      <Description><![CDATA[Preparer Phone+Fax: Work Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (preparer.work_phone) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12003117936809067565"><![CDATA[tmp = ("" + (preparer.work_phone) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="3351650918090592143"><![CDATA[tmp = (preparer.work_phone + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="3744869134724413704"><![CDATA[tmp = (preparer.work_phone + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd5aec2c-3038-41c9-a3cf-f13bbc4df768">
      <Description><![CDATA[Preparer Phone+Fax: Mobile Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (preparer.mobile_phone) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12031421628675120174"><![CDATA[tmp = ("" + (preparer.mobile_phone) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="13687530960159894704"><![CDATA[tmp = (preparer.mobile_phone + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="2699826247928097666"><![CDATA[tmp = (preparer.mobile_phone + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="75a07094-42dd-4b76-a61a-be76ecb3fd26">
      <Description><![CDATA[Preparer Phone+Fax: [Home/Work] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6828100394511379090"><![CDATA[tmp = ("" + (preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="7907590936685081219"><![CDATA[tmp = ((preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone) + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="12232109788409588990"><![CDATA[tmp = ((preparer.phone.trim().isEmpty() ? preparer.work_phone : preparer.phone) + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5b7d3b96-f074-4535-9e25-69a93d9699b6">
      <Description><![CDATA[Preparer Phone+Fax: [Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
tmp = ("" + (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="2958896409145992857"><![CDATA[tmp = ("" + (preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="4958713866038458945"><![CDATA[tmp = ((preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone) + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="866942279353723903"><![CDATA[tmp = ((preparer.phone.trim().isEmpty() ? preparer.mobile_phone : preparer.phone) + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="19143f4e-4967-472c-b205-198bc28c56b7">
      <Description><![CDATA[Preparer Phone+Fax: [Work/Home/Mobile] Phone + Fax Number]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.WorkPhone</Tag>
        <Tag var="box1_1">Preparer.Phone</Tag>
        <Tag var="box1_1">Preparer.MobilePhone</Tag>
        <Tag var="box1_1">Preparer.Fax</Tag>
      </TagMap>
      <JS><![CDATA[//
// Using 2 space chars between components for visual impact.
//
if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}
tmp = tmp.toString().trim();
tmp = ("" + (tmp) + "  " + (preparer.fax) + "").trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1867297437701362534"><![CDATA[if (!preparer.work_phone.trim().isEmpty()) {
    tmp = preparer.work_phone;
}
else if (!preparer.phone.trim().isEmpty()) {
    tmp = preparer.phone;
}
else {
    tmp = preparer.mobile_phone;
}]]></JSExpression>
      <JSExpression hash="14443307958170977081"><![CDATA[tmp = tmp.toString().trim();]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5780947013670370074"><![CDATA[tmp = ("" + (tmp) + "  " + (preparer.fax) + "").trim();]]></JSExpression>
        <JSExpression hash="7380284717209108596"><![CDATA[tmp = (tmp + "  " + preparer.fax).trim();]]></JSExpression>
        <JSExpression hash="8487272947417078286"><![CDATA[tmp = (tmp + '  ' + preparer.fax).trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2664c238-2118-498e-bd3b-f0927bd3334d">
      <Description><![CDATA[Preparer Email]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Email</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1001838083581968610"><![CDATA[tmp = preparer.email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e1dae078-c79b-4299-8875-b36e12d5d0c0">
      <Description><![CDATA[Preparer Name: Firm Name else (First + Middle Initial + Last)]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.FirmName</Tag>
        <Tag var="box1_1">Preparer.FirstName</Tag>
        <Tag var="box1_1">Preparer.MiddleInitial</Tag>
        <Tag var="box1_1">Preparer.LastName</Tag>
      </TagMap>
      <JS><![CDATA[if (preparer.firm_name.trim().isEmpty()) {
                tmp = (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name).squeeze(' ').toString().trim();
            }
            else {
                tmp = preparer.firm_name.trim();
            }
            if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JS>
      <JSExpression hash="16122474123965374641"><![CDATA[if (preparer.firm_name.trim().isEmpty()) {
                tmp = (preparer.first_name + ' ' + preparer.middle_initial + ' ' + preparer.last_name).squeeze(' ').toString().trim();
            }
            else {
                tmp = preparer.firm_name.trim();
            }]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JSExpression>
    </JSBlock>
    <JSBlock id="e4d146d9-9131-406d-96c3-1a87a66fa43b">
      <Description><![CDATA[Preparer Address: Zip Code]]></Description>
      <TagMap>
        <Tag var="box1_1">Preparer.Zip</Tag>
      </TagMap>
      <JS><![CDATA[tmp = preparer.zip.delete(/[^A-Z0-9]/g);
            if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JS>
      <JSExpression hash="2700464353849004312"><![CDATA[tmp = preparer.zip.delete(/[^A-Z0-9]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
                SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
            }]]></JSExpression>
    </JSBlock>
  </Profile>
  <Profile name="Equifax">
    <JSBlock id="4723be9c-33fb-49cb-94d0-e472b594d517">
      <Description><![CDATA[Gen Account Name]]></Description>
      <JS><![CDATA[tmp = equifax.account_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3139321212334754527"><![CDATA[tmp = equifax.account_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b7f350c8-fbe4-4cca-bf33-61400af91435">
      <Description><![CDATA[Gen Tax Accts Req: Unemp Tax - YES Check Box]]></Description>
      <JS><![CDATA[if (!equifax.unemp_tax_yes.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12725165817291414258"><![CDATA[if (!equifax.unemp_tax_yes.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ea38c8d5-d0fd-4996-824b-0defaed21f1d">
      <Description><![CDATA[Gen Tax Accts Req: Unemp Tax - NO Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.unemp_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="1431129178413998344"><![CDATA[if ((!equifax.unemp_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="38a09f18-d2b9-4376-9fec-f9add4d8fdfc">
      <Description><![CDATA[Gen Tax Accts Req: Local Wh Tax - YES Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.local_wh_tax_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="17398907032409882304"><![CDATA[if ((!equifax.local_wh_tax_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="15aafdb9-dc82-4246-9592-1fa54cf6b010">
      <Description><![CDATA[Gen Tax Accts Req: Local Wh Tax - NO Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.local_wh_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13214903145230454774"><![CDATA[if ((!equifax.local_wh_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="73b4a364-ccb7-4932-bd83-b648c1972c2c">
      <Description><![CDATA[Gen Tax Accts Req: Wh Tax - YES Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.wh_tax_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="9017534203029860306"><![CDATA[if ((!equifax.wh_tax_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3b359705-7325-498c-9d60-23a77489bb34">
      <Description><![CDATA[Gen Tax Accts Req: Wh Tax - NO Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.wh_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11338647524877257594"><![CDATA[if ((!equifax.wh_tax_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4916b87b-b1b8-499a-90a0-abd220095127">
      <Description><![CDATA[Gen Tax Accts Req: Emp Tax Consult - YES Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.emp_tax_consult_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10268539233741457052"><![CDATA[if ((!equifax.emp_tax_consult_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="56f81c43-bf95-4424-ae17-3f4163935762">
      <Description><![CDATA[Gen Tax Accts Req: Emp Tax Consult - NO Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.emp_tax_consult_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10365080835829217390"><![CDATA[if ((!equifax.emp_tax_consult_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e9d0c0be-b539-42bc-8656-9455ede856d2">
      <Description><![CDATA[Gen Reason For App: Opening A Newly Formed Business - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.open_new_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12695336322283458496"><![CDATA[if ((!equifax.open_new_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="60e5439b-13ad-48da-b4b8-8fdf0ec292d2">
      <Description><![CDATA[Gen Reason For App: Existing Entity - New In State - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.exist_entity_new_in_state.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12685066256179035966"><![CDATA[if ((!equifax.exist_entity_new_in_state.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cdc7ee78-229c-491e-8137-a4e88f255291">
      <Description><![CDATA[Gen Reason For App: Did You Acquire All/Part Of An Existing Business - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.acquire_exist_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="804488704130329726"><![CDATA[if ((!equifax.acquire_exist_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="542c0b4f-81be-4107-bea9-34cfbf332f14">
      <Description><![CDATA[Gen Reason For App: Reopening A Closed/Inactive Business - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.reopen_inactiv_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6764272438675630583"><![CDATA[if ((!equifax.reopen_inactiv_business.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2d270e25-35f6-4c89-bd1b-05bf11e340ae">
      <Description><![CDATA[Gen Reason For App: Change Owner Type/Entity - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.change_owner_type_entity.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12234413587555236608"><![CDATA[if ((!equifax.change_owner_type_entity.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b6f92a57-cfed-4d0c-a708-e9329fd4579b">
      <Description><![CDATA[Gen Reason For App: Name Change - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.name_change.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="15459710790272867497"><![CDATA[if ((!equifax.name_change.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ef251c98-dcde-460c-b0d5-68b29cb8f5e3">
      <Description><![CDATA[Gen Reason For App: Account Closures - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.acct_closures.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="70080946081254080"><![CDATA[if ((!equifax.acct_closures.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="84e5ee4e-ca17-4cd7-af76-b5ccc3cf41e7">
      <Description><![CDATA[Gen Reason For App: Other - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10677410245800698948"><![CDATA[if ((!equifax.other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e7f5d892-3090-4ae6-8730-dd4aa9b1885b">
      <Description><![CDATA[Gen Reason For App: Other Description]]></Description>
      <JS><![CDATA[tmp = equifax.other_list.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17311009769161022336"><![CDATA[tmp = equifax.other_list.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ccfb4d40-d57c-4adf-9c6f-ef6c94206fc7">
      <Description><![CDATA[Gen Reason For App: Other - Check Box|Gen Reason For App: Other - Description]]></Description>
      <JS><![CDATA[//
// Check the 'Other' box and provide the description.
//
if (!((equifax.other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="6522527524894077260"><![CDATA[if (!((equifax.other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e5f2f43e-f938-4602-8a0d-37559af896ed">
      <Description><![CDATA[Succ Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_business_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16831579486938389504"><![CDATA[tmp = equifax.succ_business_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d452d951-d3f0-42f9-a056-2cef8b88ccfa">
      <Description><![CDATA[Succ Trade/DBA Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_trade_dba.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7622717239717931278"><![CDATA[tmp = equifax.succ_trade_dba.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1f6117c1-9993-4913-b1df-b82ab9945dce">
      <Description><![CDATA[Succ Corp Addr: Addr1]]></Description>
      <JS><![CDATA[tmp = equifax.succ_corp_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17677680299434579830"><![CDATA[tmp = equifax.succ_corp_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5bed91b8-d0c2-4ce5-b099-97183e527910">
      <Description><![CDATA[Succ Corp Addr: Addr2]]></Description>
      <JS><![CDATA[tmp = equifax.succ_corp_address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16187012827112113159"><![CDATA[tmp = equifax.succ_corp_address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c6a76b92-cf19-4e7e-a150-6afa928ba830">
      <Description><![CDATA[Succ Corp Addr: Addr1 + Addr2]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7685175907051832922"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="99ef20cc-aa97-4c2d-9d1e-57e277121434">
      <Description><![CDATA[Succ Corp Addr: Addr1 + Addr2 + City]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + (equifax.succ_corp_city.trim().isEmpty() ? '' : (", " + (equifax.succ_corp_city) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13509725728222932355"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + (equifax.succ_corp_city.trim().isEmpty() ? '' : (", " + (equifax.succ_corp_city) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="12132969770539139233"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + (equifax.succ_corp_city.trim().isEmpty() ? '' : (", " + equifax.succ_corp_city))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8557618549770188788"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + (equifax.succ_corp_city.trim().isEmpty() ? '' : (', ' + equifax.succ_corp_city))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5f943e94-bc76-4402-aa0a-d76c6872b3e4">
      <Description><![CDATA[Succ Corp Addr: Addr1 + Addr2 + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13325657572975410406"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e1eaec9c-ab69-4126-9c66-94f4f7d93638">
      <Description><![CDATA[Succ Corp Addr: Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7686771578488783738"><![CDATA[tmp = (equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="528b97c3-ac4e-428b-a98e-277893389a04">
      <Description><![CDATA[Succ Corp Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5264499447478732386"><![CDATA[tmp = ((equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6360e45b-ce0f-48b2-ad6c-006a8dbbe9a1">
      <Description><![CDATA[Succ Corp Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15663783891113536395"><![CDATA[tmp = ((equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6eaaf7bd-f35d-417f-966f-5978a691e042">
      <Description><![CDATA[Succ Corp Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8712853640263266500"><![CDATA[tmp = (equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="61d003b4-e741-4420-bf42-eb56f6577065">
      <Description><![CDATA[Succ Corp Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.succ_corp_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2118716139560479977"><![CDATA[tmp = equifax.succ_corp_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="89d8c692-d9e9-4472-8864-14ee025c67b4">
      <Description><![CDATA[Succ Corp Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.succ_corp_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4941978271023939793"><![CDATA[tmp = equifax.succ_corp_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="11c7c563-6529-4080-89e3-c5eddb035928">
      <Description><![CDATA[Succ Corp Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_corp_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6139268359563717913"><![CDATA[tmp = equifax.succ_corp_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4a337c43-34c7-4cb2-9e9f-61f66a6c3cae">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18234348708353559449"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="07418d34-1f56-4ec0-83f4-249e3f969294">
      <Description><![CDATA[Succ Corp Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18234348708353559449"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="84ddeea1-f0be-4638-b2f3-2b9de0cccfd7">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11956882106115154440"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1624474033606013442"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8823234364025174630"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f2792ddb-7d70-4626-8729-b84cb6820fc6">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18168379379443054106"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8315293630121324493"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="2732803950013375030"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6bb42c94-81dd-41fe-bd30-f41b16caa8b4">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18234348708353559449"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="85df7ad8-894c-4529-96cf-48e869fa69b4">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9466682591820553731"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8223068473680423232"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="2453676816086631991"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b1717bd4-f604-47a0-8df3-270c1428967a">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen or Zip Code 5 digits with a space, hyphen, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit or 9 digit zip code with a space char before and after the hyphen - 99999 or 99999-9999
// or 99999 - 9999 - defaults to .strip.
//
// We will just process a 5 digit or a hyphenated 9 digit zip code and leave it at that.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="18117252852953108899"><![CDATA[myMatches = myReg.exec(equifax.succ_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3223945390624907901"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="5071560849013221422"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="16028850963121588757"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e5b5ba89-3e83-4b7a-bfcd-11234269a100">
      <Description><![CDATA[Succ Corp Addr: Zip Code 5 digits|Succ Corp Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_corp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_corp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="17964847093109383701"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_corp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_corp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="736df25f-50e3-4598-812d-db5dd36fa664">
      <Description><![CDATA[Succ Mail Addr: Addr1]]></Description>
      <JS><![CDATA[tmp = equifax.succ_mailing_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12607817404586040142"><![CDATA[tmp = equifax.succ_mailing_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="94f78407-c554-4260-af3f-dc64ef7b7e28">
      <Description><![CDATA[Succ Mail Addr: Addr2]]></Description>
      <JS><![CDATA[tmp = equifax.succ_mailing_address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2784953981651483811"><![CDATA[tmp = equifax.succ_mailing_address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0fdb357b-9075-44a8-8fdc-f4e9fe9b7a91">
      <Description><![CDATA[Succ Mail Addr: Addr1 + Addr2]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12099576022339034076"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="24415000-9986-4496-9bfe-0152f6a4ae1f">
      <Description><![CDATA[Succ Mail Addr: Addr1 + Addr2 + City]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + (equifax.succ_mailing_city.trim().isEmpty() ? '' : (", " + (equifax.succ_mailing_city) + ""))).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="16019624428580874948"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + (equifax.succ_mailing_city.trim().isEmpty() ? '' : (", " + (equifax.succ_mailing_city) + ""))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15978717961396990819"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + (equifax.succ_mailing_city.trim().isEmpty() ? '' : (", " + equifax.succ_mailing_city))).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="11160717693435751720"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + (equifax.succ_mailing_city.trim().isEmpty() ? '' : (', ' + equifax.succ_mailing_city))).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2acd610c-9946-4298-98d9-d522bd67380b">
      <Description><![CDATA[Succ Mail Addr: Addr1 + Addr2 + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1583077878726639967"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc963840-412e-4c0d-8d76-89f3915f24b4">
      <Description><![CDATA[Succ Mail Addr: Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + ' ' + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17014527411210457300"><![CDATA[tmp = (equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + ' ' + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9dbe04c2-456f-4510-8f0c-7d8a1750c726">
      <Description><![CDATA[Succ Mail Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12126367721589537883"><![CDATA[tmp = ((equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="61d29cba-6edd-433a-9a66-39f10fc32904">
      <Description><![CDATA[Succ Mail Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9536658325831699728"><![CDATA[tmp = ((equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc4ede55-4ded-4513-a981-375fed974f41">
      <Description><![CDATA[Succ Mail Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3425614183148258521"><![CDATA[tmp = (equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8e7c0b61-0a97-4b61-867d-5c2fda772e76">
      <Description><![CDATA[Succ Mail Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.succ_mailing_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11945184763216139561"><![CDATA[tmp = equifax.succ_mailing_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fe62825a-18df-449e-b322-df3ac2edc42f">
      <Description><![CDATA[Succ Mail Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.succ_mailing_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18090722928093130171"><![CDATA[tmp = equifax.succ_mailing_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d81ced5f-b0c3-4154-8218-cc5454dc9db0">
      <Description><![CDATA[Succ Mail Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_mailing_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12626805095913456448"><![CDATA[tmp = equifax.succ_mailing_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9d5a5884-ce7f-48ff-8e1c-86b88bf24e48">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16871966433271363618"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dff5659c-3ed1-4291-b032-19d00c393a8e">
      <Description><![CDATA[Succ Mail Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16871966433271363618"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bfd8b161-bd17-4d79-b7d5-35f1ef459dce">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9607901311956636182"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="4927269375954004689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1326279887422077448"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bdb46661-c30f-4e1b-9efb-9e0c5629279a">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18140381974514082458"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="7448831996324286865"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="6876271549259673273"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e32f927a-c83b-45ee-9dfb-5fc6c93babeb">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16871966433271363618"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7a15e3ba-1b8a-4290-8fa7-9d57c61f9db2">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="13111855067120630651"><![CDATA[myMatches = myReg.exec(equifax.succ_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9466682591820553731"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8223068473680423232"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="2453676816086631991"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b99167a5-7068-4f4d-acec-7a56e4aa88fa">
      <Description><![CDATA[Succ Mail Addr: Zip Code 5 digits|Succ Mail Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_mailing_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_mailing_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="11208227587417465081"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_mailing_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_mailing_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="974902aa-a3bd-453f-bcb8-6ac789c28327">
      <Description><![CDATA[Succ Name + Corp Addr: Legal Name + Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_business_name + ' ' + equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12755973730746738063"><![CDATA[tmp = (equifax.succ_business_name + ' ' + equifax.succ_corp_address + ' ' + equifax.succ_corp_address2 + ' ' + (equifax.succ_corp_city.trim().isEmpty() ? '' : equifax.succ_corp_city + ', ') + equifax.succ_corp_state + ' ' + equifax.succ_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="caecddae-d859-4033-9f61-ee52787acc24">
      <Description><![CDATA[Succ Name + Mail Addr: Legal Name + Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_business_name + ' ' + equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11813009105472650134"><![CDATA[tmp = (equifax.succ_business_name + ' ' + equifax.succ_mailing_address + ' ' + equifax.succ_mailing_address2 + ' ' + (equifax.succ_mailing_city.trim().isEmpty() ? '' : equifax.succ_mailing_city + ', ') + equifax.succ_mailing_state + ' ' + equifax.succ_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a2a21c21-89bd-4b67-8937-7039484e5062">
      <Description><![CDATA[Succ FEIN]]></Description>
      <JS><![CDATA[tmp = equifax.succ_fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16617894768676566514"><![CDATA[tmp = equifax.succ_fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d3d6fa03-672e-4cd2-9816-68a2a50cfba0">
      <Description><![CDATA[Succ FEIN: 9 digits only]]></Description>
      <JS><![CDATA[tmp = equifax.succ_fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="12050511118530866757"><![CDATA[tmp = equifax.succ_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="15437729326797718543"><![CDATA[tmp = equifax.succ_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="22e0d897-0e13-40de-9a60-f5b1fc6b085c">
      <Description><![CDATA[Succ FEIN: Space instead of a hyphen]]></Description>
      <JS><![CDATA[tmp = equifax.succ_fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9751357530945490796"><![CDATA[tmp = equifax.succ_fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d6c5984a-de9d-41cc-8b4f-e18338d78d0c">
      <Description><![CDATA[Succ FEIN: Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = equifax.succ_fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12050511118530866757"><![CDATA[tmp = equifax.succ_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="15437729326797718543"><![CDATA[tmp = equifax.succ_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="221c3020-cb67-447e-91a0-6443a2bafc47">
      <Description><![CDATA[Succ FEIN: First 2 digits|Succ FEIN: Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10367899993580244090"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="15596571672578121859"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c9f4980e-9cb2-4b34-a164-95007523590c">
      <Description><![CDATA[Phone: Succ Phone]]></Description>
      <JS><![CDATA[tmp = equifax.succ_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10988237360967689839"><![CDATA[tmp = equifax.succ_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fe9cd194-770d-4a6b-8997-3c515561f7fe">
      <Description><![CDATA[Phone: Succ Phone 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="16448809064028890448"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="909a5709-39ad-4af4-adda-0530741a4055">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15979954429734938433"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="76067268729087127"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4849596871365473723"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e52ff28-3c8c-4c5e-9ecb-db0d58a91e3f">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14669143904066202273"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="216710258229896395"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16784634072117406357"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e5b1b748-87c2-4d9b-bee3-57c856ab1a0a">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7305606391647154243"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13096427464490033435"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2170145912459091937"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fd72163d-f4a9-41ad-8c93-3a564feb61b5">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4540708079305165124"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11662369186359851341"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16324875013846941863"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e83313a-78bd-47fb-9962-0a15d018859d">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2645625355555138707"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6563681241032198465"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13302466320464816228"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c45b198f-88bb-4865-b00a-f4dac15d2e88">
      <Description><![CDATA[Phone: Succ Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10243295742264033355"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1693962936331456953"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5727545761128477458"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="62751509-443a-4691-97e3-21573049056f">
      <Description><![CDATA[Phone: Succ Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7382913787853501036"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="5688088113801461924"><![CDATA[myMatches = myReg.exec(equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9365382677496420825"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="250078706373388653"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7537247145000954980"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c5ec04e-d83e-43bf-bb4b-aaf2ca27de32">
      <Description><![CDATA[Phone: Succ Phone Area Code|Phone: Succ Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17728674437903300747"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16296131859823706498"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14862855722852223830"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9c0544fc-7663-42ae-8b0c-a60354157a0c">
      <Description><![CDATA[Phone: Succ Phone Area Code|Phone: Succ Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5043323403343735359"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8153214264616790770"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14105867330543174980"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="36f320e6-e495-42a1-8b52-04fbcc347aac">
      <Description><![CDATA[Phone: Succ Phone Area Code in parenthesis|Phone: Succ Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12102400721628697315"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7316087566145762366"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2480075999094053002"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b63150a3-c7b5-4830-a1ba-49305beef1fe">
      <Description><![CDATA[Phone: Succ Phone Area Code in parenthesis|Phone: Succ Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17552316679970231976"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3799350591515442016"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5243101066216887007"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c65a1d09-d08f-429f-be04-11b5a929a72a">
      <Description><![CDATA[Phone: Succ Phone Area Code|Phone: Succ Phone 3 digit exchange|Phone: Succ Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="6480160146051567192"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3d550c1a-6f22-447e-ba75-fa161b78d3c3">
      <Description><![CDATA[Phone: Succ Phone Area Code in parenthesis|Phone: Succ Phone 3 digit exchange|Phone: Succ Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9624529200915549812"><![CDATA[condvar = (equifax.succ_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="649494625960622829"><![CDATA[condvar = (equifax.succ_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8358136698111486735"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7122586589669700888"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6636978530645594684"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.succ_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7f208e10-8836-4d82-bb4e-733c7cb55d30">
      <Description><![CDATA[Succ Contact Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_contact_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1837131685715111680"><![CDATA[tmp = equifax.succ_contact_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0c98dcfa-b691-4af9-867e-97a045ef1a3c">
      <Description><![CDATA[Succ Contact Title]]></Description>
      <JS><![CDATA[tmp = equifax.succ_contact_title.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17983466960738029156"><![CDATA[tmp = equifax.succ_contact_title.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="03514de5-88d5-4465-9dc6-cf4c23a735d1">
      <Description><![CDATA[Succ Contact Name with a space + Succ Contact Title]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.succ_contact_name) + " " + (equifax.succ_contact_title) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6904914262005747633"><![CDATA[tmp = ("" + (equifax.succ_contact_name) + " " + (equifax.succ_contact_title) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="6119977781656972212"><![CDATA[tmp = (equifax.succ_contact_name + " " + equifax.succ_contact_title).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15494736083614936065"><![CDATA[tmp = (equifax.succ_contact_name + ' ' + equifax.succ_contact_title).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6623cc4a-f004-430b-b0af-523c8d9754ff">
      <Description><![CDATA[Phone: Succ Contact Phone]]></Description>
      <JS><![CDATA[tmp = equifax.succ_contact_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7546588949633062914"><![CDATA[tmp = equifax.succ_contact_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fe8391bf-c82d-4e5f-9069-d65987ae3a97">
      <Description><![CDATA[Phone: Succ Contact Phone 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="12167226433403124893"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08bd7d91-e8dc-49af-9976-521ec8da8617">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8607844868497165131"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15964857099503867990"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17271237499215968834"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="18d44c13-8709-497c-85a1-46f581edc4b7">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4880448094986467668"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7230150397978451748"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10386768559794098263"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ec6c3acf-9325-4275-8102-c432152fb5f5">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4934826740882013285"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8824563861069670300"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="13180997157654132241"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="772fe81e-00e1-4909-b241-09b8835420e1">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7479350044194021819"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4344122523954429039"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17766127672156563383"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a43f4d80-3ce2-4394-ad57-efd6605f60e5">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="18395920578713268739"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11824518062970100824"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8337361289371408146"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="89d131be-3df7-4084-9bed-2f6aa78b937c">
      <Description><![CDATA[Phone: Succ Contact Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15395692141057462360"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17097782248869785702"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7595266972648710472"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="38b5d9f1-dffa-4987-9555-d3ac7e05158c">
      <Description><![CDATA[Phone: Succ Contact Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9166225828999320174"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4775101774445442835"><![CDATA[myMatches = myReg.exec(equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15238452718932116111"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="750008478954446230"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17327163523289527229"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="101966a7-62e0-4169-84a4-ee0125977042">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code|Phone: Succ Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17108636536760219133"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3290555863571238543"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="140164778376102798"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e3df3ec7-04ca-460b-83b5-bb77a8d18353">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code|Phone: Succ Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16131170539644246700"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6877188516782693162"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9730374369132201231"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="274cea7b-69c6-4913-aabe-f6ceb87fe499">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code in parenthesis|Phone: Succ Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6339236285824904560"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5369407472949149726"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5413783251555571723"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7a8c386d-4fc5-405b-9df3-c7479a4b68e2">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code in parenthesis|Phone: Succ Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="567935050593354948"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17276640306886091261"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6846965864987083300"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6f12f16b-0f5c-460b-ac1d-baf0e695eb37">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code|Phone: Succ Contact Phone 3 digit exchange|Phone: Succ Contact Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="3951034669903190982"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8403aa49-2bd6-4334-a15e-25d2bdf48e6f">
      <Description><![CDATA[Phone: Succ Contact Phone Area Code in parenthesis|Phone: Succ Contact Phone 3 digit exchange|Phone: Succ Contact Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6457094107891941429"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4234126499720677189"><![CDATA[condvar = (equifax.succ_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11936617110275211062"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13807078313012723496"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3771327747697616862"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.succ_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="615ab89a-9e9c-488a-8f15-432ad8e37320">
      <Description><![CDATA[Succ Contact Name + Phone Number]]></Description>
      <JS><![CDATA[//
// Name and Phone number in one box:
//
tmp = ("" + (equifax.succ_contact_name) + " " + (equifax.succ_contact_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="10779239698941709042"><![CDATA[tmp = ("" + (equifax.succ_contact_name) + " " + (equifax.succ_contact_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="16665699736619065007"><![CDATA[tmp = (equifax.succ_contact_name + " " + equifax.succ_contact_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15973090718278603542"><![CDATA[tmp = (equifax.succ_contact_name + ' ' + equifax.succ_contact_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="35326fe5-3c57-488a-b8e7-8961f2f3dc75">
      <Description><![CDATA[Succ Contact Fax]]></Description>
      <JS><![CDATA[tmp = equifax.succ_contact_fax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10460594339823020436"><![CDATA[tmp = equifax.succ_contact_fax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="95ba6f6e-2d2f-4290-8ebb-a4167aed57b4">
      <Description><![CDATA[Succ Contact Email]]></Description>
      <JS><![CDATA[tmp = equifax.succ_contact_email.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17123652390782498567"><![CDATA[tmp = equifax.succ_contact_email.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b14bac30-9859-4d9f-8877-c3003877e4f4">
      <Description><![CDATA[Succ Entity Type: Corp Public - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_corp_public.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="17647640147405512244"><![CDATA[if ((!equifax.succ_entity_type_corp_public.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7986a629-d52a-4c22-bb63-f58d704ea238">
      <Description><![CDATA[Succ Entity Type: Corp Private - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_corp_private.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6615124955993317409"><![CDATA[if ((!equifax.succ_entity_type_corp_private.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cec28a7d-a64a-430c-819e-013feb83e672">
      <Description><![CDATA[Succ Entity Type: Partnership - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="4297283270172018709"><![CDATA[if ((!equifax.succ_entity_type_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="998ec983-d9b1-49dc-95fa-f421b4a83afe">
      <Description><![CDATA[Succ Entity Type: Limited Partnership - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_ltd_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="18020142649658302238"><![CDATA[if ((!equifax.succ_entity_type_ltd_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5861270f-d4f6-4462-9c9c-674342995bd4">
      <Description><![CDATA[Succ Entity Type: S Corporation - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_scorp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="8149250628096756909"><![CDATA[if ((!equifax.succ_entity_type_scorp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="de9b6004-a144-4d3e-b86f-b1c0fd656bba">
      <Description><![CDATA[Succ Entity Type: Other - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12813320202027539791"><![CDATA[if ((!equifax.succ_entity_type_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9d5063d9-f7e4-44ad-a80d-83e146754f33">
      <Description><![CDATA[Succ Entity Type: Other Description]]></Description>
      <JS><![CDATA[tmp = equifax.succ_entity_type_other_list.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9901168307373282929"><![CDATA[tmp = equifax.succ_entity_type_other_list.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="33d251da-1555-46eb-a767-2f114a92d734">
      <Description><![CDATA[Succ Entity Type: Other - Check Box|Succ Entity Type: Other - Description]]></Description>
      <JS><![CDATA[//
// Check the 'Other' box and provide the description.
//
if (!((equifax.succ_entity_type_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="5900463677485790107"><![CDATA[if (!((equifax.succ_entity_type_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9c2671fa-ccfc-46ae-8b12-79b8252c0b0c">
      <Description><![CDATA[Succ Entity Type: LLC - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_llc.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="1073457179437186297"><![CDATA[if ((!equifax.succ_entity_type_llc.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6825d58d-d11a-4b25-a767-f33e56ecd281">
      <Description><![CDATA[Succ Entity Type: Tax as Corp - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_taxed_as_corp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13932898096578021014"><![CDATA[if ((!equifax.succ_entity_type_taxed_as_corp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c73382f6-9127-4217-a1da-7305484d6223">
      <Description><![CDATA[Succ Entity Type: Tax as Partnership - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_taxed_as_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11879111409797514658"><![CDATA[if ((!equifax.succ_entity_type_taxed_as_partnership.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5a8be5e-8ead-486c-b25b-c995040f0bf1">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_disregarded_entity.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="15452225164489871457"><![CDATA[if ((!equifax.succ_entity_type_disregarded_entity.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5fa44f35-f027-4a64-9b92-41d6ba9e52fc">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16159138587858150079"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e4f28f06-72ef-418a-8b06-b3de268a34e2">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member FEIN]]></Description>
      <JS><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15152791663470495235"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc8eef9f-f729-40f1-9089-5f2c235724cf">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member FEIN - 9 digits only]]></Description>
      <JS><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4386516567220136184"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="7804858973195113568"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b4b32b49-1af1-4a14-91d5-650384cae2dc">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1525755920967653091"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0411260-1afc-405d-9c09-caadcacd80b0">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4386516567220136184"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="7804858973195113568"><![CDATA[tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e03200b5-dc9f-4d19-a963-137c7ce45cec">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member FEIN - First 2 digits|Succ Entity Type: Disregarded Entity Single Member FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3522854860448818063"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="13521349548376398275"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bd8e1fd0-4d28-4b7e-9f5d-5d8a46a4d669">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member name.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="7697996288039646753"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71b9e87e-b491-404e-963f-496d8b6a9f92">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member FEIN]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="3639681834884101546"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ab467904-95d2-40e8-bfa4-861363e77d38">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member FEIN - 9 digits.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression>
        <JSExpression hash="2726341615477671687"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="6658301146860472880"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6aeee6fb-fb9f-4188-9404-24835f12c067">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member FEIN - a space instead of a hyphen.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="16291227587914312629"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4eff7e48-1be7-4d44-95ef-b1447d87635e">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the last 4 digits of the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1135060916726365059"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}]]></JSExpression>
        <JSExpression hash="3988097863301911746"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="da865b46-e486-4f6c-a9b5-88a2b5f2571d">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member FEIN - First 2 digits|Succ Entity Type: Disregarded Entity Single Member FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member FEIN in 2 boxes.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1034291270569600306"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}]]></JSExpression>
        <JSExpression hash="10319504024484411240"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="763ddee1-1372-48b5-b5bc-f5a12473d08c">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Flow the Single Member name; flow the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="9964265656323377345"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f7c8682d-551b-45ef-8a76-6cb6652cbed3">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Flow the Single Member name; flow the Single Member FEIN - 9 digits.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression>
        <JSExpression hash="9677538264939752413"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="18412534596719390068"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0c0a0aa8-ac4f-4cd7-9ce2-5b06381c0088">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Flow the Single Member name; flow the Single Member FEIN - a space instead of a hyphen.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="11566466798454628969"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="36675275-78cd-4062-bf5e-4126ab92eed4">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Flow the Single Member name; flow the last 4 digits of the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9140250595253462846"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}]]></JSExpression>
        <JSExpression hash="11123402528658565593"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2948fe07-e9ab-48ad-912c-34527da1823e">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - First 2 digits|Succ Entity Type: Disregarded Entity Single Member FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Flow the Single Member name; flow the Single Member FEIN - in 2 boxes.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2390270641393713490"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}]]></JSExpression>
        <JSExpression hash="16359892781866773477"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="102ac30d-26c2-47a9-8d32-0365bee02dce">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member Name; flow the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="16579072452019247593"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7ce4f89d-21b9-4080-9f4c-1a592f712e2e">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member Name; flow the Single Member FEIN - 9 digits.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression>
        <JSExpression hash="13556865097815433538"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="2772042852078545314"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="27b17128-4162-4bd3-84f6-2eb15f66c4ea">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member Name; flow the Single Member FEIN - a space instead of a hyphen.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="8116240353871061351"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.succ_entity_type_disregarded_entity_member_fein.trim().replace('-', ' ');
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="55cde99d-edf0-4668-86e9-d396f9596704">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member Name; flow the last 4 digits of the Single Member FEIN.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13231604896777058715"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    }
}]]></JSExpression>
        <JSExpression hash="10536646949128821883"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^\d{5}(\d{4})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0b8628d6-e4fe-4fe5-ae65-0764dc305bc5">
      <Description><![CDATA[Succ Entity Type: Disregarded Entity - Check Box|Succ Entity Type: Disregarded Entity Single Member Name|Succ Entity Type: Disregarded Entity Single Member FEIN - First 2 digits|Succ Entity Type: Disregarded Entity Single Member FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// If 'Disregarded Entity': Check the 'Disregarded Entity' check box; flow the Single Member Name; flow the Single Member FEIN in 2 boxes.
//
if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10683062432581172361"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2]);
    }
}]]></JSExpression>
        <JSExpression hash="18311161026139918083"><![CDATA[if (!((equifax.succ_entity_type_disregarded_entity.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_entity_type_disregarded_entity_member_name.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_entity_type_disregarded_entity_member_fein.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[2]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="dd761f75-8d30-4531-8254-a6318ee598a5">
      <Description><![CDATA[Succ Entity Type: Sole Proprietorship - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_entity_type_sole_proprietor.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2586404606014716603"><![CDATA[if ((!equifax.succ_entity_type_sole_proprietor.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a7d3c008-aede-45cc-a681-2a77a007cfce">
      <Description><![CDATA[Succ Date Started]]></Description>
      <JS><![CDATA[tmp = equifax.succ_date_started.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3314497872153131711"><![CDATA[tmp = equifax.succ_date_started.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0e779262-4b99-41a1-9672-1d6988434b10">
      <Description><![CDATA[Succ Date Started: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="14164849820985145286"><![CDATA[myMatches = myReg.exec(equifax.succ_date_started.trim());]]></JSExpression>
      <JSExpression hash="16933811414370563286"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e35758cb-6783-479a-a9ef-0b6bf6b3be00">
      <Description><![CDATA[Succ Date Started: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="14164849820985145286"><![CDATA[myMatches = myReg.exec(equifax.succ_date_started.trim());]]></JSExpression>
      <JSExpression hash="12087455400906407812"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b4613852-0c5a-49d1-9437-71aee4bb302b">
      <Description><![CDATA[Succ Date Started: MM DD YY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="14164849820985145286"><![CDATA[myMatches = myReg.exec(equifax.succ_date_started.trim());]]></JSExpression>
      <JSExpression hash="13964047739816849725"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3041a6e8-00a7-436f-a544-e7cf63618c3f">
      <Description><![CDATA[Succ Date Started: MMDDYY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_date_started.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_date_started.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="14164849820985145286"><![CDATA[myMatches = myReg.exec(equifax.succ_date_started.trim());]]></JSExpression>
      <JSExpression hash="5463907298087266616"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_date_started.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="28e57bfb-0dbe-41ea-ae20-47f3421099d7">
      <Description><![CDATA[Succ Date Started: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_date_started.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17108861866956711979"><![CDATA[tmp = equifax.succ_date_started.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5fd2837-7129-4d2f-82f0-524fa2f9383b">
      <Description><![CDATA[Succ Date Started: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_date_started.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1693290301298071192"><![CDATA[tmp = equifax.succ_date_started.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0f164408-bfda-4166-ae4b-ada51ae7c9ea">
      <Description><![CDATA[Succ Date Started: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Display date started as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_date_started.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7610749917068873659"><![CDATA[tmp = equifax.succ_date_started.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8cf95612-1a5b-4e96-963f-47ec300adbb1">
      <Description><![CDATA[Succ Date Started: MM|Succ Date Started: DD|Succ Date Started: YY]]></Description>
      <JS><![CDATA[//
// Display Date Started in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5758393451124451314"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10422323837915390905"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bb531c19-25e2-4406-b9cb-af3197931c2e">
      <Description><![CDATA[Succ Date Started: MM|Succ Date Started: DD|Succ Date Started: YYYY]]></Description>
      <JS><![CDATA[//
// Display Date Started in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="840984717372227962"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12221160073266720635"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5b7f6509-8fce-48ab-a42d-1cb425e87270">
      <Description><![CDATA[Succ Date Started: Day with alpha suffix|Succ Date Started: alpha month|Succ Date Started: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date Started displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date started of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8021175829731758055"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1929285406112947325"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="feba3982-475f-4e3a-8917-29bbeffe6e78">
      <Description><![CDATA[Succ Date Started: 2 digit day|Succ Date Started: alpha month|Succ Date Started: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date Started displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date started of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10411597220629531916"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1244072055025175438"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="19fd8084-d723-4c6b-96e6-693da3074685">
      <Description><![CDATA[Succ Date Started: alpha month with a space + Day with alpha suffix|Succ Date Started: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date Started displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date started of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16880306476129791796"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="479813488194049530"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="17006825283881413829"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="17592837509137957832"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="12272454644431074386"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15134933152032402780"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_date_started.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2456a6f8-ef92-4ef0-a820-81c026303f21">
      <Description><![CDATA[Succ State of Incorporation]]></Description>
      <JS><![CDATA[tmp = equifax.succ_state_of_incorporation.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9618300470392351387"><![CDATA[tmp = equifax.succ_state_of_incorporation.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a34cd638-35fd-4d4a-9c9f-c8b73deb4a49">
      <Description><![CDATA[Succ Date Started with a space + Succ State of Incorporation]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.succ_date_started) + " " + (equifax.succ_state_of_incorporation) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="8191750646510949411"><![CDATA[tmp = ("" + (equifax.succ_date_started) + " " + (equifax.succ_state_of_incorporation) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="7639501387561544745"><![CDATA[tmp = (equifax.succ_date_started + " " + equifax.succ_state_of_incorporation).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8078640097323714706"><![CDATA[tmp = (equifax.succ_date_started + ' ' + equifax.succ_state_of_incorporation).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0ce2c581-4995-41fc-8908-07b5f5f3d4ea">
      <Description><![CDATA[Succ State of Incorporation with a space + Succ Date Started]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.succ_state_of_incorporation) + " " + (equifax.succ_date_started) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4019891674278350467"><![CDATA[tmp = ("" + (equifax.succ_state_of_incorporation) + " " + (equifax.succ_date_started) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="9966165474989117452"><![CDATA[tmp = (equifax.succ_state_of_incorporation + " " + equifax.succ_date_started).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="18142158082815290476"><![CDATA[tmp = (equifax.succ_state_of_incorporation + ' ' + equifax.succ_date_started).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="34384a97-a5bb-4260-b542-26d2b1d4a52a">
      <Description><![CDATA[Succ Fiscal Year End Date]]></Description>
      <JS><![CDATA[tmp = equifax.succ_fiscal_yr_end_date.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3732268977380264707"><![CDATA[tmp = equifax.succ_fiscal_yr_end_date.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="24aba8b1-e71b-4991-8d61-588b00382727">
      <Description><![CDATA[Succ Fiscal Year End: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3618881140787206787"><![CDATA[myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());]]></JSExpression>
      <JSExpression hash="5738491047101731060"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="39999a8b-9120-411c-94ea-7e761117ac65">
      <Description><![CDATA[Succ Fiscal Year End: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3618881140787206787"><![CDATA[myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());]]></JSExpression>
      <JSExpression hash="9751794584521064695"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dc0dd60b-c725-4e9a-8363-e7dc767295ca">
      <Description><![CDATA[Succ Fiscal Year End: MM DD YY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3618881140787206787"><![CDATA[myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());]]></JSExpression>
      <JSExpression hash="13255191819963060649"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c866462e-5c17-4a02-ab9f-2733950fd7f8">
      <Description><![CDATA[Succ Fiscal Year End: MMDDYY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3618881140787206787"><![CDATA[myMatches = myReg.exec(equifax.succ_fiscal_yr_end_date.trim());]]></JSExpression>
      <JSExpression hash="726273510856415689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_fiscal_yr_end_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d40d636f-21af-48db-a647-acf0513b0517">
      <Description><![CDATA[Succ Fiscal Year End: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_fiscal_yr_end_date.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6744692462296492133"><![CDATA[tmp = equifax.succ_fiscal_yr_end_date.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e6c28fa2-9858-47e1-871f-abf10affe49d">
      <Description><![CDATA[Succ Fiscal Year End: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_fiscal_yr_end_date.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5811246626083258514"><![CDATA[tmp = equifax.succ_fiscal_yr_end_date.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fd17fa9b-e309-4f0c-8864-d8803e29032d">
      <Description><![CDATA[Succ Fiscal Year End: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Display fiscal year end date as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_fiscal_yr_end_date.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10513813733251547295"><![CDATA[tmp = equifax.succ_fiscal_yr_end_date.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="680fb80b-9191-4cf4-9b13-eca00cb74111">
      <Description><![CDATA[Succ Fiscal Year End: MM|Succ Fiscal Year End: DD|Succ Fiscal Year End: YY]]></Description>
      <JS><![CDATA[//
// Display Fiscal Year End Date in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3297286639000072825"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15256149831732283552"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="918e5b79-402c-4621-b834-6a4fb8f2c26d">
      <Description><![CDATA[Succ Fiscal Year End: MM|Succ Fiscal Year End: DD|Succ Fiscal Year End: YYYY]]></Description>
      <JS><![CDATA[//
// Display Fiscal Year End Date in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14896837730424696809"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="8427944469902699936"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b2bbc461-414e-4fe4-bb3b-f584e6317832">
      <Description><![CDATA[Succ Fiscal Year End: Day with alpha suffix|Succ Fiscal Year End: alpha month|Succ Fiscal Year End: 4 digit year]]></Description>
      <JS><![CDATA[//
// Fiscal Year End displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Fiscal Year End of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14018941824648568557"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10616892749253250867"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e09655a2-4c8e-4225-96fd-0c93ef2a3fa1">
      <Description><![CDATA[Succ Fiscal Year End: 2 digit day|Succ Fiscal Year End: alpha month|Succ Fiscal Year End: 4 digit year]]></Description>
      <JS><![CDATA[//
// Fiscal Year End displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Fiscal Year End of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="18383110577122533651"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1307450325461762239"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6e2d7576-785f-4b8e-b50d-894768c51a24">
      <Description><![CDATA[Succ Fiscal Year End: alpha month with a space + Day with alpha suffix|Succ Fiscal Year End: 4 digit year]]></Description>
      <JS><![CDATA[//
// Fiscal Year End displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Fiscal Year End of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11261583431844108135"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8303713378052060278"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="2062713478704953115"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4931569223705653166"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3544048944801088043"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8431722796582938444"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_fiscal_yr_end_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="9a132799-8db6-47ab-bd8c-a93a88f00c8c">
      <Description><![CDATA[Succ Accounting Method: Cash - Check Box]]></Description>
      <JS><![CDATA[tmp = equifax.succ_acctng_method_cash.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7692950777353537857"><![CDATA[tmp = equifax.succ_acctng_method_cash.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="91fbd0d3-8074-45f9-aa43-7b3abdfec598">
      <Description><![CDATA[Succ Accounting Method: Accrual - Check Box]]></Description>
      <JS><![CDATA[tmp = equifax.succ_acctng_method_accrual.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14551489016402241421"><![CDATA[tmp = equifax.succ_acctng_method_accrual.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8d0c8e9b-14aa-4e4f-86b0-e831bc795e84">
      <Description><![CDATA[Succ First Day of Employment]]></Description>
      <JS><![CDATA[tmp = equifax.succ_first_day_of_employment.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11048731345599711118"><![CDATA[tmp = equifax.succ_first_day_of_employment.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e6f1795d-38ac-4da5-badc-1141971186a1">
      <Description><![CDATA[Succ First Day of Employment: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3674186389455949743"><![CDATA[myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());]]></JSExpression>
      <JSExpression hash="14803950888656062256"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="492177a4-6a20-4809-a034-5f8e42d96e48">
      <Description><![CDATA[Succ First Day of Employment: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3674186389455949743"><![CDATA[myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());]]></JSExpression>
      <JSExpression hash="11452006831872597173"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c2182741-f81c-47c0-905e-65c9e4d628f3">
      <Description><![CDATA[Succ First Day of Employment: MM DD YY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3674186389455949743"><![CDATA[myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());]]></JSExpression>
      <JSExpression hash="12545652226603862043"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4140aa2a-e087-4fed-9f3c-2e4e99281d7d">
      <Description><![CDATA[Succ First Day of Employment: MMDDYY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="3674186389455949743"><![CDATA[myMatches = myReg.exec(equifax.succ_first_day_of_employment.trim());]]></JSExpression>
      <JSExpression hash="1225385372365537653"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_first_day_of_employment.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="97498a98-b95b-4365-9f8d-8cd72819fa4b">
      <Description><![CDATA[Succ First Day of Employment: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_day_of_employment.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="684000074998988629"><![CDATA[tmp = equifax.succ_first_day_of_employment.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="916adb3d-c44a-44d0-b5dd-95603158d90e">
      <Description><![CDATA[Succ First Day of Employment: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_day_of_employment.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18074727303090492182"><![CDATA[tmp = equifax.succ_first_day_of_employment.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6c2c2728-9d0c-4ac0-99e0-0970c4e55396">
      <Description><![CDATA[Succ First Day of Employment: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Display first day of employment as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_day_of_employment.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15363664257877272811"><![CDATA[tmp = equifax.succ_first_day_of_employment.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8a772b1c-48e6-46b1-8bf5-138f8da2a556">
      <Description><![CDATA[Succ First Day of Employment: MM|Succ First Day of Employment: DD|Succ First Day of Employment: YY]]></Description>
      <JS><![CDATA[//
// Display First Day of Employment in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1897885811999324128"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14632025253040420649"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b3c63b59-9971-4484-9b5f-0b956dccf5df">
      <Description><![CDATA[Succ First Day of Employment: MM|Succ First Day of Employment: DD|Succ First Day of Employment: YYYY]]></Description>
      <JS><![CDATA[//
// Display First Day of Employment in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="57802030203897541"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16678109366468282099"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b1eac20d-1cd5-43a8-ab9d-8c4307058349">
      <Description><![CDATA[Succ First Day of Employment: Day with alpha suffix|Succ First Day of Employment: alpha month|Succ First Day of Employment: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Day of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a First Day of Employment of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2274706758786996894"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14950923087801490564"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f70c5c37-ea09-4ffb-90e4-cf926354764b">
      <Description><![CDATA[Succ First Day of Employment: 2 digit day|Succ First Day of Employment: alpha month|Succ First Day of Employment: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Day of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a First Day of Employment of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9730419496046179594"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="10985455550468912755"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="11b541bf-c73b-4c8f-8115-3c6dbcaacc8f">
      <Description><![CDATA[Succ First Day of Employment: alpha month with a space + Day with alpha suffix|Succ First Day of Employment: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Day of Employment displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a First Day of Employment of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9092916361831122654"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3437771846807218985"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15550361071785517791"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="227009881435800593"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="5806014111287451980"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="14903939423151319761"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_day_of_employment.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bba7e6d5-5edd-4faa-b91b-e59b63dfad6a">
      <Description><![CDATA[Succ First Payroll Date]]></Description>
      <JS><![CDATA[tmp = equifax.succ_first_payroll_date.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15995902841725482441"><![CDATA[tmp = equifax.succ_first_payroll_date.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fb7ea979-2350-44f4-bb19-19ee3864ff34">
      <Description><![CDATA[Succ First Payroll Date: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="18202285521180997524"><![CDATA[myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());]]></JSExpression>
      <JSExpression hash="11008587336014208494"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="afb22d89-1d14-4ad1-9365-4e58ce559146">
      <Description><![CDATA[Succ First Payroll Date: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="18202285521180997524"><![CDATA[myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());]]></JSExpression>
      <JSExpression hash="14577898289564553167"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a766f2c3-6506-4f7b-ac84-eacf3ccd52eb">
      <Description><![CDATA[Succ First Payroll Date: MM DD YY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="18202285521180997524"><![CDATA[myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());]]></JSExpression>
      <JSExpression hash="3909271891951024032"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="26e7fbd6-5f7c-4a8d-b641-0130969c9068">
      <Description><![CDATA[Succ First Payroll Date: MMDDYY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="18202285521180997524"><![CDATA[myMatches = myReg.exec(equifax.succ_first_payroll_date.trim());]]></JSExpression>
      <JSExpression hash="1696017839163126137"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_first_payroll_date.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ea2705b-625a-4d65-a02b-5ccca48e8f85">
      <Description><![CDATA[Succ First Payroll Date: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_payroll_date.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3863839120157994735"><![CDATA[tmp = equifax.succ_first_payroll_date.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="50ddca7a-411c-4c2f-beba-db3f3b5e3801">
      <Description><![CDATA[Succ First Payroll Date: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_payroll_date.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9095938059488315226"><![CDATA[tmp = equifax.succ_first_payroll_date.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d783355b-2027-4585-a24b-c1a7055a3f4f">
      <Description><![CDATA[Succ First Payroll Date: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Display first payroll date as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_first_payroll_date.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6387002914810827952"><![CDATA[tmp = equifax.succ_first_payroll_date.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7e767919-8bca-4a56-98b3-d97104356615">
      <Description><![CDATA[Succ First Payroll Date: MM|Succ First Payroll Date: DD|Succ First Payroll Date: YY]]></Description>
      <JS><![CDATA[//
// Display First Payroll Date in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2300216010375718739"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9188712891129934698"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="4c1bcbc4-8c04-49d2-9ac7-ca7c2b45277f">
      <Description><![CDATA[Succ First Payroll Date: MM|Succ First Payroll Date: DD|Succ First Payroll Date: YYYY]]></Description>
      <JS><![CDATA[//
// Display First Payroll Date in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12380329909925562516"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13832729860752524854"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6c512821-ac0c-448b-b972-4ad561e77744">
      <Description><![CDATA[Succ First Payroll Date: Day with alpha suffix|Succ First Payroll Date: alpha month|Succ First Payroll Date: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Payroll Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a First Payroll Date of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14339092000610552012"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="12231633036346770022"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="309b4143-7a56-4edc-a4e4-5db1f1461464">
      <Description><![CDATA[Succ First Payroll Date: 2 digit day|Succ First Payroll Date: alpha month|Succ First Payroll Date: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Payroll Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a First Payroll Date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3832498964715589429"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4902027675366580073"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d0c71b4c-d791-4071-ad2a-f3fb570b3d17">
      <Description><![CDATA[Succ First Payroll Date: alpha month with a space + Day with alpha suffix|Succ First Payroll Date: 4 digit year]]></Description>
      <JS><![CDATA[//
// First Payroll Date displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a First Payroll Date of
// 02/09/1940 would be displayed as 'February 9th', '1940'. Keep in
// mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15099518842655869766"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="15738812968336232828"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1816825627534687543"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="13135473114117947052"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="6864750101546969180"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="1459198250514076562"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_first_payroll_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f006ccad-b571-4fd9-b923-0b2276ccdec1">
      <Description><![CDATA[Succ Nature of Business Activity: Retail - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_retail.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13206680224009503858"><![CDATA[if ((!equifax.succ_nature_of_business_retail.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="56a92836-6d58-42d9-8e20-fbbc125d7307">
      <Description><![CDATA[Succ Nature of Business Activity: Wholesale - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_wholesale.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6486525859456856"><![CDATA[if ((!equifax.succ_nature_of_business_wholesale.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2adde74d-4b25-41f1-8d62-07e3be44f49a">
      <Description><![CDATA[Succ Nature of Business Activity: Manufacturing - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_manufacturing.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11891603041035942651"><![CDATA[if ((!equifax.succ_nature_of_business_manufacturing.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7e96b90e-f497-4e8c-a66f-cb6067ca8d3a">
      <Description><![CDATA[Succ Nature of Business Activity: Other - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13916262007541189053"><![CDATA[if ((!equifax.succ_nature_of_business_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="771c7e37-b332-4697-b290-a5cb82eece00">
      <Description><![CDATA[Succ Nature of Business Activity: Other - Description]]></Description>
      <JS><![CDATA[tmp = equifax.succ_nature_of_business_other_list.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8894499409364921746"><![CDATA[tmp = equifax.succ_nature_of_business_other_list.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1316a588-eb85-4e49-8f1b-9ec242c79686">
      <Description><![CDATA[Succ Nature of Business Activity: Other - Check Box|Succ Nature of Business Activity: Other - Description]]></Description>
      <JS><![CDATA[//
// Check the 'Other' box and provide the description.
//
if (!((equifax.succ_nature_of_business_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_nature_of_business_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="10513112305120111534"><![CDATA[if (!((equifax.succ_nature_of_business_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_nature_of_business_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5bd708a3-b730-48d8-bae8-a3963a638ea4">
      <Description><![CDATA[Succ Nature of Business Activity: Service - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_service.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="9105805258226507438"><![CDATA[if ((!equifax.succ_nature_of_business_service.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c1584db3-88ed-4a76-9988-afdbbff837df">
      <Description><![CDATA[Succ Nature of Business Activity: Staffing/Temp/Emply Agt Services - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_staffing_temp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="3395006136559917129"><![CDATA[if ((!equifax.succ_nature_of_business_staffing_temp.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e97987f9-26f7-4953-8ba4-0160939af8ee">
      <Description><![CDATA[Succ Nature of Business Activity: Professional Employer Organization - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_nature_of_business_prof_emp_org.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="7880246782247005775"><![CDATA[if ((!equifax.succ_nature_of_business_prof_emp_org.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="51eaa35d-91f1-4443-a311-d693577aa62e">
      <Description><![CDATA[Succ Business Activity Description]]></Description>
      <JS><![CDATA[tmp = equifax.succ_business_activity_description.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16218402940858950638"><![CDATA[tmp = equifax.succ_business_activity_description.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bc2503cb-1a5d-4eba-ba40-5eae7f15c5f1">
      <Description><![CDATA[Succ NAICS/SIC Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_naics_code.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1416140625624206924"><![CDATA[tmp = equifax.succ_naics_code.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f06b2ab1-3e08-4616-997c-cbc33327938e">
      <Description><![CDATA[Succ (C)(3) Exempt: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_501_c_3_exempt_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6835995076410281195"><![CDATA[if ((!equifax.succ_501_c_3_exempt_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bad0b54b-d3ca-4f21-b73a-b228adf55cc0">
      <Description><![CDATA[Succ (C)(3) Exempt: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_501_c_3_exempt_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="14114641696879618238"><![CDATA[if ((!equifax.succ_501_c_3_exempt_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="65332ac9-0174-407b-b3ef-297d6c2849d6">
      <Description><![CDATA[Succ FUTA: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_futa_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5745631060520299"><![CDATA[if ((!equifax.succ_futa_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c52aa17e-2763-462a-a50e-24e15602fb03">
      <Description><![CDATA[Succ FUTA: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_futa_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2027414791045437757"><![CDATA[if ((!equifax.succ_futa_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a6f09f74-9fd1-45c4-89e3-49f36a5544bd">
      <Description><![CDATA[Succ FUTA: Liability Year]]></Description>
      <JS><![CDATA[// FUTA Liability Year is not validated so so we will just strip it and give it to them.
tmp = equifax.succ_futa_date_first_liability.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13690530036104479629"><![CDATA[tmp = equifax.succ_futa_date_first_liability.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ca8b1891-43d3-415e-b64d-f6a97ea520b0">
      <Description><![CDATA[Succ FUTA: Liability Year - YY format]]></Description>
      <JS><![CDATA[// FUTA Liability Year - YY format: This will handle either a 2 or 4 digit year, else we default to .strip.
myReg = /^(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_futa_date_first_liability.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_futa_date_first_liability.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2006821638151602962"><![CDATA[myReg = /^(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="5175149922050526194"><![CDATA[myMatches = myReg.exec(equifax.succ_futa_date_first_liability.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16004934975725143834"><![CDATA[myMatches = myReg.exec(equifax.succ_futa_date_first_liability.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="1997458278036962861"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_futa_date_first_liability.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8ccb9f03-8fdc-4bac-b148-9378060bad95">
      <Description><![CDATA[Succ FUTA: YES - Check Box|Succ FUTA: Liability Year]]></Description>
      <JS><![CDATA[//
// Separate boxes: FUTA Yes Check Box and FUTA Liability Year:
//
if (!((equifax.succ_futa_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // FUTA Liability Year is not validated so so we will just strip it and give it to them.
    tmp = equifax.succ_futa_date_first_liability.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="8995930974539982592"><![CDATA[if (!((equifax.succ_futa_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // FUTA Liability Year is not validated so so we will just strip it and give it to them.
    tmp = equifax.succ_futa_date_first_liability.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="445adc61-7168-4f03-bb99-cb51e126af67">
      <Description><![CDATA[Succ FUTA: YES - Check Box|Succ FUTA: Liability Year - YY format]]></Description>
      <JS><![CDATA[//
// Separate boxes: FUTA Yes Check Box and FUTA Liability Year YY format:
//
if (!((equifax.succ_futa_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // FUTA Liability Year - YY format: FUTA Liability Year is not validated. This will handle either a 2 or 4 digit year, else we default to .strip.
    if ((myMatches = /^(\d\d)?(\d\d)$/.exec(equifax.succ_futa_date_first_liability.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[2];
    }
    else {
        tmp = equifax.succ_futa_date_first_liability.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1572220795463911416"><![CDATA[if (!((equifax.succ_futa_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // FUTA Liability Year - YY format: FUTA Liability Year is not validated. This will handle either a 2 or 4 digit year, else we default to .strip.
    if ((myMatches = /^(\d\d)?(\d\d)$/.exec(equifax.succ_futa_date_first_liability.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[2];
    }
    else {
        tmp = equifax.succ_futa_date_first_liability.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="7193974759293638782"><![CDATA[if (!((equifax.succ_futa_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // FUTA Liability Year - YY format: FUTA Liability Year is not validated. This will handle either a 2 or 4 digit year, else we default to .strip.
    if ((myMatches = /^(\d\d)?(\d\d)$/.exec(equifax.succ_futa_date_first_liability.delete(/\-/g))) != null) {
        tmp = myMatches[2];
    }
    else {
        tmp = equifax.succ_futa_date_first_liability.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="925a0c48-5823-440c-aad9-b4bf6c4af21e">
      <Description><![CDATA[Succ PSP: N/A - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_psp_na.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5617031460796307677"><![CDATA[if ((!equifax.succ_psp_na.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a9dd58ef-5dc4-4f60-8ec6-ce146c0a5239">
      <Description><![CDATA[Succ PSP: Provider Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3057222831674556581"><![CDATA[tmp = equifax.succ_psp_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3d78166c-18e9-4ad6-8767-81e5e12cc43a">
      <Description><![CDATA[Succ PSP: Contact Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_contact_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17617736523655398470"><![CDATA[tmp = equifax.succ_psp_contact_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="01e451f4-61fb-4b6d-b99f-eb6f773233d6">
      <Description><![CDATA[Succ PSP: Contact Name else Provider Name]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_contact_name.trim().isEmpty() ? equifax.succ_psp_name : equifax.succ_psp_contact_name).toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6589371706516071682"><![CDATA[tmp = (equifax.succ_psp_contact_name.trim().isEmpty() ? equifax.succ_psp_name : equifax.succ_psp_contact_name).toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1c703bc2-b08a-4fe3-a7d0-7bd01a87474d">
      <Description><![CDATA[Succ PSP: Phone]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13158824133024947446"><![CDATA[tmp = equifax.succ_psp_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f679a72e-1719-4165-9625-26af900c1fff">
      <Description><![CDATA[Succ PSP: Phone - 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="16284881724782595604"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="279cf24b-d269-4cf9-8faf-ee6e63a1676d">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8164334800450860047"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5653239173217419463"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15046691580642533404"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4bcd7401-b631-49db-aa02-4f91d6f6973c">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4002326898446405746"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11243843967156424595"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="277380066139379823"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="68af2b1d-4285-42ba-956e-1f96e0427ff5">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13106380374913221540"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16206917868645151814"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4649129850926560006"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df2944c2-be68-4550-95c9-08e01659d8a0">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8105668816918850084"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8906735872164754441"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10044076338380632308"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e8c0d0e7-77f3-4ee2-82d0-4f1415e51a07">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2900883099862912192"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2517530952184756054"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2250622505540923496"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="15fd2cc7-b7b6-4af7-9d10-49ebfe67ebe8">
      <Description><![CDATA[Succ PSP: Phone - Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4795560601148634108"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7726072654737435391"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4692676468084310475"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d953a203-8ccd-4f3e-a31e-86eeba2a325c">
      <Description><![CDATA[Succ PSP: Phone - 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen,4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6191689940183210614"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="14078913207451718860"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16008203302219269927"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9438691632385905227"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1319422843824624552"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="74c221c8-9018-440a-bead-673967a12c37">
      <Description><![CDATA[Succ PSP: Phone - Area Code|Succ PSP: Phone - 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9093034693239609343"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11903967050201146301"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="431963961066931463"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f5e2ebe1-132b-461c-81d7-30276c6cdebd">
      <Description><![CDATA[Succ PSP: Phone - Area Code|Succ PSP: Phone - 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4186696991937516211"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12168884991923803650"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="7222440423377356678"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a6956b9c-b776-4e66-a9e5-ff63c89f9c0c">
      <Description><![CDATA[Succ PSP: Phone - Area Code in parenthesis|Succ PSP: Phone - 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14646456884773986984"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11546221510051851909"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11095470491989987852"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2a19e7f8-2306-40c3-8c8e-7e2ee5d0c2e2">
      <Description><![CDATA[Succ PSP: Phone - Area Code in parenthesis|Succ PSP: Phone - 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15288198079428366067"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6142236330715053402"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9318674797461335999"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="81562055-8bbb-403d-ae56-14a91a05f197">
      <Description><![CDATA[Succ PSP: Phone - Area Code|Succ PSP: Phone - 3 digit exchange|Succ PSP: Phone - 4 digits number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="1186038171709217452"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7cc26fa6-7c26-40d0-a4a4-e3bf969cda16">
      <Description><![CDATA[Succ PSP: Phone - Area Code in parenthesis|Succ PSP: Phone - 3 digit exchange|Succ PSP: Phone - 4 digits number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9910908728052018231"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3516451710048208563"><![CDATA[condvar = (equifax.succ_psp_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17957527462379287127"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14496962042831807808"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5309498448229334192"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.succ_psp_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f313485e-4179-4c9c-a2c3-3b19aef429b9">
      <Description><![CDATA[Succ PSP Addr: Street Address]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9823728636013647101"><![CDATA[tmp = equifax.succ_psp_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="353f3670-2503-4876-aa3e-3cfa649b811e">
      <Description><![CDATA[Succ PSP Addr: Street Address + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2463515844773231047"><![CDATA[tmp = (equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd5b6cd2-7f68-4750-8de5-c7d99a72fa69">
      <Description><![CDATA[Succ PSP Addr: Street Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7126012614761669801"><![CDATA[tmp = (equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="da6134cb-adf7-40c1-a923-d79bb95ad87b">
      <Description><![CDATA[Succ PSP Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14339614466034516127"><![CDATA[tmp = equifax.succ_psp_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="94de458f-f6cf-4f51-96ee-1faad018cfdb">
      <Description><![CDATA[Succ PSP Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13582324022434879004"><![CDATA[tmp = ((equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1d15bd59-d190-4c94-9fb2-a199b9eff034">
      <Description><![CDATA[Succ PSP Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5864668975716318611"><![CDATA[tmp = ((equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a313aa0d-5b37-4d55-9b67-a985e016b688">
      <Description><![CDATA[Succ PSP Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9988349865544682046"><![CDATA[tmp = equifax.succ_psp_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6b5a7f35-1283-4ebd-95e5-ce28c0e0258a">
      <Description><![CDATA[Succ PSP Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="670833329240821786"><![CDATA[tmp = (equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="78e3286b-cd7e-426a-8716-f964d5a6653f">
      <Description><![CDATA[Succ PSP Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_psp_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14150143115376074593"><![CDATA[tmp = equifax.succ_psp_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5ccd3558-f8de-4fab-ab93-a3a9c3e1b1a2">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="6593425956281588164"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a1ad6025-557a-4a96-b439-e0cef32697e6">
      <Description><![CDATA[Succ PSP Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="6593425956281588164"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2beaa874-bb99-489f-a192-e9b608b0d55e">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6206562527642209544"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="17536676253187436578"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="9739198796437744980"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ecc303bb-efb2-4ca2-ab59-d1da6699a8cd">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8487474744012596308"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1013927770792804018"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="622399902770370579"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fbbb1456-408a-4d64-ae42-4a6f2f691e33">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="6593425956281588164"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="55e713be-6fff-40bd-88b1-29df3444bc2f">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9732921204813168689"><![CDATA[myMatches = myReg.exec(equifax.succ_psp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="16499636076886247013"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11435740342746143715"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="7576453026826522554"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_psp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6be0605b-3616-4f50-819c-db5d1a4e8f8a">
      <Description><![CDATA[Succ PSP Addr: Zip Code 5 digits|Succ PSP Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_psp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_psp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="1887973305118394988"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_psp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_psp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="155dec12-f6ee-4bb1-be67-42f89141fa36">
      <Description><![CDATA[Succ PSP: Provider Name + Phone]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_phone).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1279262629682636623"><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_phone).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="279ccc99-d533-48b2-a7de-ae37ac6aaa64">
      <Description><![CDATA[Succ PSP Name + Addr: Provider Name + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15313480110817564938"><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1b7bd486-bfbc-4319-b183-7306c84421cd">
      <Description><![CDATA[Succ PSP Name + Addr + Phone: Provider Name + Address + City + State + Zip + Phone]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip + ' ' + equifax.succ_psp_phone).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2180658122944202351"><![CDATA[tmp = (equifax.succ_psp_name + ' ' + equifax.succ_psp_address + ' ' + (equifax.succ_psp_city.trim().isEmpty() ? '' : equifax.succ_psp_city + ', ') + equifax.succ_psp_state + ' ' + equifax.succ_psp_zip + ' ' + equifax.succ_psp_phone).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="062b1938-ff4b-4dd1-836c-597ca48bf2df">
      <Description><![CDATA[Succ Bank Acc Info: Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11682006399946864164"><![CDATA[tmp = equifax.succ_bank_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6ba4e684-8266-40de-aa27-85c9b959cba8">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Street Address]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5812728359155513373"><![CDATA[tmp = equifax.succ_bank_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="783972c1-3d45-4000-8517-002d27a8ee06">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Street Address + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11212856623838581545"><![CDATA[tmp = (equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7df0a2e8-90f7-46d0-93ba-f6ab9459c219">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Street Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13108183401636689305"><![CDATA[tmp = (equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3d61cb2c-0109-41e9-8677-9dc0a89c2d12">
      <Description><![CDATA[Succ Bank Acc Info - Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8055081462467507783"><![CDATA[tmp = equifax.succ_bank_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c7c1de22-3c04-416b-8af3-21906ff4218c">
      <Description><![CDATA[Succ Bank Acc Info - Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4184041393747871915"><![CDATA[tmp = ((equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="209b5b8c-c0d9-4a5a-9ea4-4ea755f58ab6">
      <Description><![CDATA[Succ Bank Acc Info - Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12792563668346836060"><![CDATA[tmp = ((equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3e75cc55-efbd-415f-83a9-9212ac0f5da1">
      <Description><![CDATA[Succ Bank Acc Info - Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11995248770943619943"><![CDATA[tmp = equifax.succ_bank_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2bc06035-5bd2-4155-9839-75ceebdd3b7a">
      <Description><![CDATA[Succ Bank Acc Info - Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17323793794562156615"><![CDATA[tmp = (equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6b35425e-fef8-4f5a-ba24-6cc9ea23a42d">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10906793811641631685"><![CDATA[tmp = equifax.succ_bank_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ad61b81-f741-450f-bb13-bf91935b1ec3">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3191926098863005616"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fdc8d57c-73f1-406d-8445-03bd5c6c3656">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3191926098863005616"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f63154ae-d6ab-45bc-bb30-43e0fcf52c26">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1690745469910069748"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="6830059537546385884"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="3260721879798246459"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="607401bf-7352-4de6-92ea-e81312caa002">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9835733156775622096"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8335722970413546887"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="506957021055762806"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="03ddc0b5-8e17-45ea-9dbc-a8b402049c4e">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="3191926098863005616"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5aec5640-62cf-4397-b320-5c2b857395d8">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="3487270597673717487"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17446992448529607473"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="6369329851887125275"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
        <JSExpression hash="17958969007086897396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_bank_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6d9c6f3a-31b0-408d-8e04-cca126711073">
      <Description><![CDATA[Succ Bank Acc Info - Addr: Zip Code 5 digits|Succ Bank Acc Info - Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_bank_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_bank_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="3415507513699230153"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_bank_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_bank_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="27f47a4d-2fee-4b49-b2b8-d558bfd48e23">
      <Description><![CDATA[Succ Bank Acc Info: Phone]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4460392026466392320"><![CDATA[tmp = equifax.succ_bank_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="30515682-6589-4b41-877d-d9b2436b189d">
      <Description><![CDATA[Succ Bank Acc Info: Phone - 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="6800425228859620366"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="da832669-782e-470c-9801-424e0b22567c">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2006613583499883403"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4760323946885782556"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5795038910852393105"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5a98f0cd-4a1b-4c32-82b5-16b90c7fce75">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6607024124668985226"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="7986736721722842000"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14235196643654225335"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5d906264-bc87-4514-b63e-1952ed4d1320">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6767755619304635377"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16501684617451658607"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5299913774395760788"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cddc189a-4428-4948-9012-75e51eac8a41">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17384750215236730372"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12091695912161885521"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="6337963944645659267"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b88d1cee-e2e9-479a-a4af-c86ec7cc16dc">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15149091674391390928"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5615824834082813355"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="1069106608408712770"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc25b2ab-432c-4e8b-8918-ddde5be6e528">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10292676648551181750"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3255116606404624022"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2687923203913163318"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd746091-87f1-44aa-9113-8870b0c86742">
      <Description><![CDATA[Succ Bank Acc Info: Phone - 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7174515053283313417"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9211032998035008365"><![CDATA[myMatches = myReg.exec(equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17924860036784619346"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3318355597012984584"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3644058213846764667"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c5cff1d2-2626-4e1e-b428-e40d91ea4b04">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code|Succ Bank Acc Info: Phone - 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2223209596890279329"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8639841966295186842"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4552707053667861713"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="fb2e47ba-8b31-49f7-98a2-0589328d86ba">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code|Succ Bank Acc Info: Phone - 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="540467187996131569"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17488099528399839773"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13398313666480123248"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bd22d26b-6c01-4df6-b7f5-972973e0b08c">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code in parenthesis|Succ Bank Acc Info: Phone - 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15326911787330754274"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6843533894085721491"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9258234199479545324"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="61f7667e-9686-416d-a6c3-a653177434d0">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code in parenthesis|Succ Bank Acc Info: Phone - 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9996728387527414501"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14559771949049560869"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="2051457154675558947"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ce85307b-8415-4e36-945e-3e313818c281">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code|Succ Bank Acc Info: Phone - 3 digit exchange|Succ Bank Acc Info: Phone - 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="16608930031194101742"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="de134765-737f-40a2-a5ae-ef26a168d0e1">
      <Description><![CDATA[Succ Bank Acc Info: Phone - Area Code in parenthesis|Succ Bank Acc Info: Phone - 3 digit exchange|Succ Bank Acc Info: Phone - 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7440918751921005275"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="8487701513669171184"><![CDATA[condvar = (equifax.succ_bank_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8924595193521628729"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3196312238908857204"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8109743259087689052"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.succ_bank_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="437339bb-234b-4ed2-9d83-948d4d734692">
      <Description><![CDATA[Succ Bank Acc Info - Name + Addr: Name + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_bank_name + ' ' + equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6962394726968244959"><![CDATA[tmp = (equifax.succ_bank_name + ' ' + equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b1c0a46c-19d6-4cc7-8881-b4b99cb84849">
      <Description><![CDATA[Succ Bank Acc Info: Name + Phone Number]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.succ_bank_name) + " " + (equifax.succ_bank_phone) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="7610512858871203613"><![CDATA[tmp = ("" + (equifax.succ_bank_name) + " " + (equifax.succ_bank_phone) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8856170229748838734"><![CDATA[tmp = (equifax.succ_bank_name + " " + equifax.succ_bank_phone).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15950584178737843632"><![CDATA[tmp = (equifax.succ_bank_name + ' ' + equifax.succ_bank_phone).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5185fb54-c9da-4129-9b28-5b1921c124a5">
      <Description><![CDATA[Succ Bank Acc Info - Name + Addr + Phone: Name + Address + City + State + Zip + Phone]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_bank_name + ' ' + equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip + ' ' + equifax.succ_bank_phone).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11649526704816450176"><![CDATA[tmp = (equifax.succ_bank_name + ' ' + equifax.succ_bank_address + ' ' + (equifax.succ_bank_city.trim().isEmpty() ? '' : equifax.succ_bank_city + ', ') + equifax.succ_bank_state + ' ' + equifax.succ_bank_zip + ' ' + equifax.succ_bank_phone).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="efeececc-7d20-4c68-ae1b-09467f1ed208">
      <Description><![CDATA[Succ Bank Acc Info: Account Number]]></Description>
      <JS><![CDATA[tmp = equifax.succ_bank_acct_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7854755470943540575"><![CDATA[tmp = equifax.succ_bank_acct_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc930907-da7d-4fe3-8d67-5622fd1d0301">
      <Description><![CDATA[Succ Employment in Other States: If YES - Check YES Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_empl_other_states_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="14255015631803752655"><![CDATA[if ((!equifax.succ_empl_other_states_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c25cf656-c81d-478a-9ecf-87c71d018339">
      <Description><![CDATA[Succ Employment in Other States: If YES - Multiple States]]></Description>
      <JS><![CDATA[// Flow the Multiple state field IF employment in other states.
if (!equifax.succ_empl_other_states_yes.trim().isEmpty()) {
    tmp = equifax.succ_empl_other_states_multiple.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JS>
      <JSExpression hash="7945477309125530909"><![CDATA[if (!equifax.succ_empl_other_states_yes.trim().isEmpty()) {
    tmp = equifax.succ_empl_other_states_multiple.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c5580427-11b5-426b-a89e-dc91fd7b9a25">
      <Description><![CDATA[Succ Employment in Other States: If YES - Check YES Box|Succ Employment in Other States: If YES - Multiple States]]></Description>
      <JS><![CDATA[// Check the YES box and flow the Multiple state field IF employment in other states.
if (!equifax.succ_empl_other_states_yes.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_empl_other_states_multiple.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="8710640430414878115"><![CDATA[if (!equifax.succ_empl_other_states_yes.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.succ_empl_other_states_multiple.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="00339019-c6bc-4034-a0ab-022093db425a">
      <Description><![CDATA[Succ Employment in Other States: If NO - Check NO Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_empl_other_states_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="14048070498888981954"><![CDATA[if ((!equifax.succ_empl_other_states_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="95b77c31-8907-4d41-b0ab-5d5c3ab19274">
      <Description><![CDATA[Succ Employment in Other States: Multiple States]]></Description>
      <JS><![CDATA[tmp = equifax.succ_empl_other_states_multiple.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14383716918397059290"><![CDATA[tmp = equifax.succ_empl_other_states_multiple.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="22002a8a-5fdb-4cf7-a279-1728c147b82e">
      <Description><![CDATA[Succ Break in Employment: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_break_in_employment_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="7925198364851407539"><![CDATA[if ((!equifax.succ_break_in_employment_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b80e3e8d-c3d2-44b9-b127-0605de5700f5">
      <Description><![CDATA[Succ Break in Employment: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.succ_break_in_employment_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="7909309496647198599"><![CDATA[if ((!equifax.succ_break_in_employment_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="eaba40df-ce5a-44ca-87a0-969065cf7b56">
      <Description><![CDATA[Succ Total Payroll Date of $ or More: Quarter]]></Description>
      <JS><![CDATA[tmp = equifax.succ_total_payroll_quarter.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9507337657794100829"><![CDATA[tmp = equifax.succ_total_payroll_quarter.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cdad0df8-f37e-4f97-8fd1-a0c412a469c8">
      <Description><![CDATA[Succ Total Payroll Date of $ or More: Year]]></Description>
      <JS><![CDATA[tmp = equifax.succ_total_payroll_year.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4125620545112692740"><![CDATA[tmp = equifax.succ_total_payroll_year.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="25ed23b6-99da-4774-a4fa-ff9ef1670db2">
      <Description><![CDATA[Succ Total Payroll Date of $ or More: 2 Digit Year]]></Description>
      <JS><![CDATA[// Total Payroll of $ or more Year - YY format: This will handle either a 2 or 4 digit year, else we default to .strip.
myReg = /^(\d\d)?(\d{2})$/;
myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_total_payroll_year.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1117191498457073974"><![CDATA[myReg = /^(\d\d)?(\d{2})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1516713527917744677"><![CDATA[myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17485237097217902775"><![CDATA[myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="3647215122551713778"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_total_payroll_year.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2fb0258c-5ce4-4ba7-b44d-44d25bbe1da9">
      <Description><![CDATA[Succ Total Payroll Date of $ or More: Quarter + Year]]></Description>
      <JS><![CDATA[// Chomp is needed when both fields are empty, or when the '/' is at the end of the string, in which case '/' is deleted.
tmp = (equifax.succ_total_payroll_quarter.trim() + '/' + equifax.succ_total_payroll_year.trim()).chomp('/');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7711673113666721855"><![CDATA[tmp = (equifax.succ_total_payroll_quarter.trim() + '/' + equifax.succ_total_payroll_year.trim()).chomp('/');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4e7fd76c-6007-43e9-9ef6-c85efb934934">
      <Description><![CDATA[Succ Total Payroll Date of $ or More: Quarter + 2 Digit Year]]></Description>
      <JS><![CDATA[// Total Payroll of $ or more - Qtr + Year, using a YY format for the year: This will handle either a 2 or 4 digit
// year, else we default to .strip. Chomp is needed when both fields are empty, or when the '/' is at the end of the
// string, in which case '/' is deleted.
myReg = /^(\d\d)?(\d{2})$/;
myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_total_payroll_year.trim();
}
tmp = (equifax.succ_total_payroll_quarter.trim() + '/' + (tmp)).chomp('/');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="1117191498457073974"><![CDATA[myReg = /^(\d\d)?(\d{2})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="1516713527917744677"><![CDATA[myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="17485237097217902775"><![CDATA[myMatches = myReg.exec(equifax.succ_total_payroll_year.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="3647215122551713778"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[2];
}
else {
    tmp = equifax.succ_total_payroll_year.trim();
}]]></JSExpression>
      <JSExpression hash="3069225165244020081"><![CDATA[tmp = (equifax.succ_total_payroll_quarter.trim() + '/' + (tmp)).chomp('/');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9ff6947-195a-4dd2-8a08-d4f346ea1881">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More]]></Description>
      <JS><![CDATA[tmp = equifax.succ_20th_wk_date_emp.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12868725062951616672"><![CDATA[tmp = equifax.succ_20th_wk_date_emp.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="586fa352-3721-4d5a-9c0c-a62197aeedac">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Display date as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="7412286473299367549"><![CDATA[myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());]]></JSExpression>
      <JSExpression hash="14042987902682070220"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + myMatches[3];
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a3dbd743-e5dd-463f-8787-567731735c1a">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Display date as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="7412286473299367549"><![CDATA[myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());]]></JSExpression>
      <JSExpression hash="9007829030610866649"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7a408ed1-e7c1-4157-a26f-dcd72b091766">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM DD YY format]]></Description>
      <JS><![CDATA[//
// Display date as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="7412286473299367549"><![CDATA[myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());]]></JSExpression>
      <JSExpression hash="11630033892600847772"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6af89317-4090-407d-ada6-7f008e2656a5">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MMDDYY format]]></Description>
      <JS><![CDATA[//
// Display date as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;
myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());
if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2244028981977746108"><![CDATA[myReg = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/;]]></JSExpression>
      <JSExpression hash="7412286473299367549"><![CDATA[myMatches = myReg.exec(equifax.succ_20th_wk_date_emp.trim());]]></JSExpression>
      <JSExpression hash="14540209289061030883"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
}
else {
    tmp = equifax.succ_20th_wk_date_emp.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="be216bd8-47f8-4ed4-9c51-1bb33dfe0401">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Display date as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_20th_wk_date_emp.trim().gsub("/", "-");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17161506916864370439"><![CDATA[tmp = equifax.succ_20th_wk_date_emp.trim().gsub("/", "-");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4e21c11a-d096-4d9d-983e-a7be02243efb">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Display date as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_20th_wk_date_emp.trim().gsub("/", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1178956960054821550"><![CDATA[tmp = equifax.succ_20th_wk_date_emp.trim().gsub("/", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="32541fbb-b68e-4253-83f1-6e8b13131260">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Display date as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
tmp = equifax.succ_20th_wk_date_emp.trim().delete(/[/]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2811588913506140730"><![CDATA[tmp = equifax.succ_20th_wk_date_emp.trim().delete(/[/]/g);]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c9f7777b-5261-43cd-aa29-d2242d87d85e">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM|Succ 20th Week Employment Date of 1 or More: DD|Succ 20th Week Employment Date of 1 or More: YY]]></Description>
      <JS><![CDATA[//
// Display 20th Week Employment Date of 1 or More in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11954648254207611303"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13803284249437090542"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="528bb40b-6ada-40ad-96d0-4e99baf03f80">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: MM|Succ 20th Week Employment Date of 1 or More: DD|Succ 20th Week Employment Date of 1 or More: YYYY]]></Description>
      <JS><![CDATA[//
// Display 20th Week Employment Date of 1 or More in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="858049248284482952"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13138355794723493112"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ee3e8102-c2de-4df6-ac0b-e0fd344d6f3a">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: Day with alpha suffix|Succ 20th Week Employment Date of 1 or More: alpha month|Succ 20th Week Employment Date of 1 or More: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of
// 02/09/1940 would be displayed as '9th', 'February', '1940'.
// Keep in mind that the form could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10125249055205698600"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3822242471634161803"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f1a12dfe-942b-40d1-b961-e7021d319284">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: 2 digit day|Succ 20th Week Employment Date of 1 or More: alpha month|Succ 20th Week Employment Date of 1 or More: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a 02/09/1940 date would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15883416639829203763"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="4329724206481294212"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="34ba1a2a-90fb-4450-9924-f64aa6ddf87d">
      <Description><![CDATA[Succ 20th Week Employment Date of 1 or More: alpha month with a space + Day with alpha suffix|Succ 20th Week Employment Date of 1 or More: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a 02/09/1940 date would
// be displayed as 'February 9th', '1940'. Keep in mind that the form
// could be field traited upper case.
//
// The profile validates for MM/DD/YYYY.
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2494574242063866759"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="8240120613348551998"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="3476761700192733549"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="454291063240234375"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="7105750037882708997"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
        <JSExpression hash="11603272408903615625"><![CDATA[if ((myMatches = /^([0-9]{2})([0-9]{2})([0-9]{4})$/.exec(equifax.succ_20th_wk_date_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[3]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6a7ca0c0-2499-4613-808d-7ed17d5df108">
      <Description><![CDATA[Succ Parent: Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_parent_company_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13280852733551073953"><![CDATA[tmp = equifax.succ_parent_company_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a2b9f257-3ef0-43e0-a2bb-22053f05ff20">
      <Description><![CDATA[Succ Parent: FEIN]]></Description>
      <JS><![CDATA[tmp = equifax.succ_parent_company_fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11786506672034563482"><![CDATA[tmp = equifax.succ_parent_company_fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e8ffd5f5-3538-4b73-8723-da134b790bea">
      <Description><![CDATA[Succ Parent: FEIN - 9 digits only]]></Description>
      <JS><![CDATA[tmp = equifax.succ_parent_company_fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="4714224283935913464"><![CDATA[tmp = equifax.succ_parent_company_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="876043692067186657"><![CDATA[tmp = equifax.succ_parent_company_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d27989b7-f0fe-4420-83c0-6dd54610d297">
      <Description><![CDATA[Succ Parent: FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[tmp = equifax.succ_parent_company_fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9618982945996803462"><![CDATA[tmp = equifax.succ_parent_company_fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cd9fbe4d-f26e-4e44-8f38-f2b8da3fa86d">
      <Description><![CDATA[Succ Parent: FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = equifax.succ_parent_company_fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4714224283935913464"><![CDATA[tmp = equifax.succ_parent_company_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="876043692067186657"><![CDATA[tmp = equifax.succ_parent_company_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cf345325-4867-4843-b72e-8f50142b3f9a">
      <Description><![CDATA[Succ Parent: FEIN - First 2 digits|Succ Parent: FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_parent_company_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1180897109866709452"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_parent_company_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="17721507512070057667"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.succ_parent_company_fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="98f927b8-d30e-428a-99c9-839a38cc7ba9">
      <Description><![CDATA[Succ Officer: Name]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5403078029066377768"><![CDATA[tmp = equifax.succ_officer_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="066b4964-164e-4d4b-b202-6d24c5f7a97a">
      <Description><![CDATA[Succ Officer: Title]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_title.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11151593444114526105"><![CDATA[tmp = equifax.succ_officer_title.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="78bbb0bb-13b0-4ca7-830b-5783656156a6">
      <Description><![CDATA[Succ Officer: Name + Title]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.succ_officer#_name) + " " + (equifax.succ_officer#_title) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="1325442370210669622"><![CDATA[tmp = ("" + (equifax.succ_officer_name) + " " + (equifax.succ_officer_title) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="13740603764677270225"><![CDATA[tmp = (equifax.succ_officer_name + " " + equifax.succ_officer_title).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="8724751252041432970"><![CDATA[tmp = (equifax.succ_officer_name + ' ' + equifax.succ_officer_title).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5a06e4a8-b6ce-4bde-b91b-5721dd2ba45c">
      <Description><![CDATA[Succ Officer: SSN]]></Description>
      <JS><![CDATA[//
// Form wants a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5f8a8a6-619c-49bd-95a7-87f7fa26fc22">
      <Description><![CDATA[Succ Officer: SSN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants a SSN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1d0f0d04-eb5e-4cd3-b131-7267c63109e3">
      <Description><![CDATA[Succ Officer: SSN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// Form wants a SSN [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a21f1f8f-4254-423b-a9be-3fd70669681e">
      <Description><![CDATA[Succ Officer: SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^\d{3}-\d\d-(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="18318445402606293553"><![CDATA[myReg = /^\d{3}-\d\d-(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40a43c9f-9906-41ab-843c-7dc0b449a56a">
      <Description><![CDATA[Succ Officer: SSN - First 3 digits|Succ Officer: SSN - Next 2 digits|Succ Officer: SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// SSN broken into three boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.succ_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="14855346919004566716"><![CDATA[if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.succ_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="292712a9-b9fb-435a-807a-a03c5a1b7902">
      <Description><![CDATA[Succ Officer: FEIN]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="55ed2688-e8fa-478e-97d2-e90b3c5f4111">
      <Description><![CDATA[Succ Officer: FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="14b937d4-2ad5-48f0-8c11-7889ae410871">
      <Description><![CDATA[Succ Officer: FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN [99 9999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="3327344423551032095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ce306be-c69f-4a4e-9337-3f27a7d6826e">
      <Description><![CDATA[Succ Officer: FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
myReg = /^\d\d-\d{3}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="9922658390315729580"><![CDATA[myReg = /^\d\d-\d{3}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2a31fc52-b5d2-4c2a-a825-6c9b45529f7f">
      <Description><![CDATA[Succ Officer: FEIN - First 2 digits|Succ Officer: FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.succ_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression hash="6102557078885792489"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.succ_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ddc1651b-5350-416d-9291-6625b78fe2c7">
      <Description><![CDATA[Succ Officer: SSN or an FEIN]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip the value and give it to them as either an FEIN or a SSN is acceptable.
//
tmp = equifax.succ_officer#_ssn_ein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="69583025618373582"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bef33a46-85af-4f29-8023-bdff52cf17fc">
      <Description><![CDATA[Succ Officer: SSN or an FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box - [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give it to them, as either an FEIN or
// a SSN expressed as 9 digits is acceptable.
//
tmp = equifax.succ_officer#_ssn_ein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13219652458319422012"><![CDATA[tmp = equifax.succ_officer_ssn_ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4718149286687584311"><![CDATA[tmp = equifax.succ_officer_ssn_ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ab102004-9e73-4cc2-aaa6-27f5bca02102">
      <Description><![CDATA[Succ Officer: SSN or an FEIN - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box with hyphen(s) replaced by a space char -
// [FEIN: 99 9999999; SSN: 999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip and substitute a space char for the hyphens.
//
tmp = equifax.succ_officer#_ssn_ein.trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10224095060694971142"><![CDATA[tmp = equifax.succ_officer_ssn_ein.trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e7cc20eb-4f50-4453-8270-22e2c1d9b585">
      <Description><![CDATA[Succ Officer: SSN or an FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Form wants the last 4 digits of a SSN or an FEIN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give them the last 4 digits if we
// have 9 digits to work with after the deletion.
//
tmp = equifax.succ_officer#_ssn_ein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13219652458319422012"><![CDATA[tmp = equifax.succ_officer_ssn_ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="4718149286687584311"><![CDATA[tmp = equifax.succ_officer_ssn_ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d2d24320-7c94-4223-91b5-f18613af87e3">
      <Description><![CDATA[Succ Officer: FEIN - Check Box|Succ Officer: SSN - Check Box|Succ Officer: FEIN else SSN]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN, but there are separate check boxes to indicate
// which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// So we need to make sure we check the proper box by looking at the pattern in the profile field.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="17105710016390300390"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2ed5abba-c3a4-4397-802c-99fa18d8e8ed">
      <Description><![CDATA[Succ Officer: FEIN - Check Box|Succ Officer: SSN - Check Box|Succ Officer: FEIN else SSN - 9 digits only]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN [999999999], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we delete the hyphen(s). to get the 9 digit value.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="17105710016390300390"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="7f57a4f6-f181-40f3-b566-224bb87ffa93">
      <Description><![CDATA[Succ Officer: FEIN - Check Box|Succ Officer: SSN - Check Box|Succ Officer: FEIN else SSN - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a SSN [999 99 9999], but there are separate
// check boxes to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we replace the hyphen(s) with a space char.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="17105710016390300390"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a3584fab-c44f-47c0-9c4c-494b9c4b4992">
      <Description><![CDATA[Succ Officer: FEIN - Check Box|Succ Officer: SSN - Check Box|Succ Officer: FEIN else SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [last 4 digits], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="17134899531017100766"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d9fa5ae2-39f8-466d-8448-28d7bc7c14f9">
      <Description><![CDATA[Succ Officer: FEIN|Succ Officer: SSN [If no FEIN]]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="12358029450005119587"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="489574b5-1885-4232-8dd7-7e2964ead8da">
      <Description><![CDATA[Succ Officer: FEIN - 9 digits only|Succ Officer: SSN - 9 digits only [If no FEIN]]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we delete the hyphens.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5337552735169380203"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10215534512414800796"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ae7a1516-aa56-4de6-a90a-2f948852ea21">
      <Description><![CDATA[Succ Officer: FEIN - Space instead of hyphen|Succ Officer: SSN [If no FEIN] - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else SSN in another box [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we replace the hyphens with a space char.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="3112639185823708490"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="00fac83f-eaed-420e-878e-a2cfdd860b19">
      <Description><![CDATA[Succ Officer: FEIN - Last 4 digits|Succ Officer: SSN [If no FEIN] - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box - last 4 digits:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.succ_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="14929976078156951075"><![CDATA[if (equifax.succ_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.succ_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.succ_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bcd52fed-20b2-4d76-96e8-95bce5edf47e">
      <Description><![CDATA[Succ Officer: FEIN - First 2 digits|Succ Officer: FEIN - Last 7 digits|Succ Officer: SSN [If no FEIN] - First 3 digits|Succ Officer: SSN [If no FEIN] - Next 2 digits|Succ Officer: SSN [If no FEIN] - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else SSN broken into 3 boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the values to the proper boxes by first looking at the pattern in the
// profile field, then we give them the breakout accordingly [breaking on the hyphens].
//
//
// FEIN:
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.succ_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.succ_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="4709961227627226207"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.succ_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.succ_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9de2dec2-d0f4-4f0b-b56d-bf7584f4c1b6">
      <Description><![CDATA[Succ Officer - Addr: Street Address]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13704323488952984121"><![CDATA[tmp = equifax.succ_officer_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af3ac37c-196a-41d1-a2f1-5659bf3273a8">
      <Description><![CDATA[Succ Officer - Addr: Street Address + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_officer#_address + ' ' + (equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8298484897475303600"><![CDATA[tmp = (equifax.succ_officer_address + ' ' + (equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="47310c85-ed4a-484d-a4b9-810d8bda868f">
      <Description><![CDATA[Succ Officer - Addr: Street Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_officer#_address + ' ' + (equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state + ' ' + equifax.succ_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15196301328518325012"><![CDATA[tmp = (equifax.succ_officer_address + ' ' + (equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state + ' ' + equifax.succ_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ed120313-3e50-4645-9649-a20b8d48f5e4">
      <Description><![CDATA[Succ Officer - Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9205730629351548702"><![CDATA[tmp = equifax.succ_officer_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af75cd0b-a7bd-4f00-bab5-9a9cd65d3724">
      <Description><![CDATA[Succ Officer - Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8606042689278213796"><![CDATA[tmp = ((equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8b62ad81-af06-4955-bfa0-ce9eefc90c2b">
      <Description><![CDATA[Succ Officer - Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state + ' ' + equifax.succ_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8392605635687628590"><![CDATA[tmp = ((equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state + ' ' + equifax.succ_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e2950c21-bd8a-48bc-869c-7fec1f089207">
      <Description><![CDATA[Succ Officer - Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3189850478021969104"><![CDATA[tmp = equifax.succ_officer_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="43bc78a1-ef38-4fde-acf8-2789e9c2d8b6">
      <Description><![CDATA[Succ Officer - Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_officer#_state + ' ' + equifax.succ_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2865275950303832564"><![CDATA[tmp = (equifax.succ_officer_state + ' ' + equifax.succ_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="80fdacd3-e560-4cc4-880a-07f43e56007b">
      <Description><![CDATA[Succ Officer - Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4790181775106996244"><![CDATA[tmp = equifax.succ_officer_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="72cf784c-2f35-478e-bc9d-1ce416b5f8e6">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18131006865356190279"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8cc448ca-f71f-4f4d-b1f8-8b361b27070c">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18131006865356190279"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c8f8594e-8052-4352-9e6b-d5c334a8821b">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3224670531170386194"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="6489323448658234837"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="17279213218412987594"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="87057ab4-d048-49b4-b7b9-22901078fd19">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6250044819706221068"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11376934568317114846"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="14237509623779657165"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7ebd97b2-bff5-46d7-bd15-73f7c380bd97">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="18131006865356190279"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6bf5a7f0-cbbf-4c40-83fb-fb2124ae208f">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.succ_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="1566897053850108773"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8252123690596377364"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="15782972707172700808"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="6756047679827288690"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.succ_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="94812ca3-0c3c-485a-8063-c671d7f3c79f">
      <Description><![CDATA[Succ Officer - Addr: Zip Code 5 digits|Succ Officer - Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_officer#_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_officer#_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="12523765583426239976"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.succ_officer_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.succ_officer_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1b6672f7-fb15-4d77-b134-49e2c07dca84">
      <Description><![CDATA[Succ Officer Name + Addr: Name + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_officer#_name + ' ' + equifax.succ_officer#_address + ' ' + (equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state + ' ' + equifax.succ_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12422001893468597606"><![CDATA[tmp = (equifax.succ_officer_name + ' ' + equifax.succ_officer_address + ' ' + (equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state + ' ' + equifax.succ_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="41831d56-6526-439c-8161-ca7e4bd75da7">
      <Description><![CDATA[Succ Officer Name + Title + Addr: Name + Title + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.succ_officer#_name + ' ' + equifax.succ_officer#_title + ' ' + equifax.succ_officer#_address + ' ' + (equifax.succ_officer#_city.trim().isEmpty() ? '' : equifax.succ_officer#_city + ', ') + equifax.succ_officer#_state + ' ' + equifax.succ_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2520243669746240154"><![CDATA[tmp = (equifax.succ_officer_name + ' ' + equifax.succ_officer_title + ' ' + equifax.succ_officer_address + ' ' + (equifax.succ_officer_city.trim().isEmpty() ? '' : equifax.succ_officer_city + ', ') + equifax.succ_officer_state + ' ' + equifax.succ_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c12faef4-9809-4103-a271-a8380f7ae9ac">
      <Description><![CDATA[Succ Officer: DOB]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_dob.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9360860171611585583"><![CDATA[tmp = equifax.succ_officer_dob.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b31b878-4324-4e17-95a4-1413ddee96f9">
      <Description><![CDATA[Succ Officer: DOB - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5506524098514663286"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="8588116396982436386"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="8683522609741337994"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bab5eb30-3a66-4664-9faa-b8a497fc5dba">
      <Description><![CDATA[Succ Officer: DOB - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7739527202298788396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="17158071932306734519"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="9822808314362593935"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="975eecd3-8b77-45cc-bdd3-1aee83417659">
      <Description><![CDATA[Succ Officer: DOB - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4923703929851362749"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="16102060921230661507"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="13588883744311109807"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f2d6e5ca-dbd7-4952-b8e3-0f9db3a5e9f8">
      <Description><![CDATA[Succ Officer: DOB - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1051760574392061809"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="21913558141039751"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7b683229-5899-408c-ae21-1f430f8681b1">
      <Description><![CDATA[Succ Officer: DOB - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8756786752607446986"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="3770722969958845224"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="9377499179913763890"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0629092c-521f-4119-a33a-d042ed2d06ff">
      <Description><![CDATA[Succ Officer: DOB - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8501834923738636575"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="9355242282493330542"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="14284477588650186758"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0d7e4099-51ec-4bb2-b43d-b79740c63366">
      <Description><![CDATA[Succ Officer: DOB - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10778881819529313983"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="14107904989823579548"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="9449636217408247951"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aa1ce0d8-3581-443c-bef2-1c8a16c0db90">
      <Description><![CDATA[Succ Officer: DOB - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17404787607226160628"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3644398469139777173"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="964079124657876702"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="14529312390871088570"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="11331474920617668083"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = equifax.succ_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="036323af-e2b3-490b-ab11-8bbba30ca5c1">
      <Description><![CDATA[Succ Officer: DOB - MM|Succ Officer: DOB - DD|Succ Officer: DOB - YY]]></Description>
      <JS><![CDATA[//
// Display Officer DOB in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15036654320705362019"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="4526548172054813529"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a63d54b7-d088-4a28-90d5-fb036c2b149c">
      <Description><![CDATA[Succ Officer: DOB - MM|Succ Officer: DOB - DD|Succ Officer: DOB - YYYY]]></Description>
      <JS><![CDATA[//
// Display Officer DOB in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4540627257327346970"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10837130935127175150"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="91f82a42-8483-4472-ba89-2366306f9b77">
      <Description><![CDATA[Succ Officer: DOB - Day with alpha suffix|Succ Officer: DOB - alpha month|Succ Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9890234640723864444"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3676534095507378667"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15243362546129987055"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9508230543226560889"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="6712680392298489839"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="8772701132382596124"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="21ddfe5f-ff48-4621-ae64-af0d53eba173">
      <Description><![CDATA[Succ Officer: DOB - 2 digit day|Succ Officer: DOB - alpha month|Succ Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a birth date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6825124458875237781"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="14187572094149029297"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="665827620948501731"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13499565989991112854"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="2390177294776087478"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2642932445936977687"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8fe32b2e-2f51-460f-a8c5-5cd3e419296a">
      <Description><![CDATA[Succ Officer: DOB - alpha month with a space + Day with alpha suffix|Succ Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12922399776725718754"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="2756017862765613584"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6519018961110715106"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="1892236298673940362"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="11273782666583335926"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15096887489132923431"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="4b1edce7-e83e-45e3-8fc7-aa5100bde4f1">
      <Description><![CDATA[Succ Officer: Date of Appt]]></Description>
      <JS><![CDATA[tmp = equifax.succ_officer#_date_of_appt.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="879512288430464836"><![CDATA[tmp = equifax.succ_officer_date_of_appt.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="25ff18f8-01ed-4939-b187-b187027e228b">
      <Description><![CDATA[Succ Officer: Date of Appt - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13958107961923123903"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="8690268498571347295"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="4847194749654840736"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bd19d3c1-ff3c-41e9-ae04-0379e90d7a86">
      <Description><![CDATA[Succ Officer: Date of Appt - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16550282573016825262"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="9062870292379317899"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="18076351143232456088"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1e0974d9-8501-4916-8aa6-869b718eb22d">
      <Description><![CDATA[Succ Officer: Date of Appt - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11554006857620214519"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11808712431875680562"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="8976448115223219312"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bdc3c2ee-23c7-45d0-a381-528d4f6814ab">
      <Description><![CDATA[Succ Officer: Date of Appt - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17920322094197124014"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="1757232548222458966"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ab39b79c-d03a-4b6e-86ba-67a65e9def96">
      <Description><![CDATA[Succ Officer: Date of Appt - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4969418084135824773"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="18362793874008155545"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11089051634100109886"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71e2e4eb-855f-4288-b52e-6a7d24fb1072">
      <Description><![CDATA[Succ Officer: Date of Appt - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8740914676498756897"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="9696463524864814072"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="8445643021895886620"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="60d1fe5f-f7e1-4568-8192-7c10a7b2eb87">
      <Description><![CDATA[Succ Officer: Date of Appt - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8551297904540684988"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="5082810492544851260"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="1130416312036412447"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5b1acb3b-741f-4b5c-9e49-dc70505cb51d">
      <Description><![CDATA[Succ Officer: Date of Appt - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2786171688244869520"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="9303666724098521047"><![CDATA[myMatches = myReg.exec(equifax.succ_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3328000084068783663"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="15176259093043574319"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="7987011814332955012"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.succ_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7c625dc9-6d23-4816-b27e-f8ce30935d52">
      <Description><![CDATA[Succ Officer: Date of Appt - MM|Succ Officer: Date of Appt - DD|Succ Officer: Date of Appt - YY]]></Description>
      <JS><![CDATA[//
// Display Officer Date of Appointment in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8329340014413977194"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9326051602021610584"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2b776a19-0eca-4ae4-afb6-cf74e3146220">
      <Description><![CDATA[Succ Officer: Date of Appt - MM|Succ Officer: Date of Appt - DD|Succ Officer: Date of Appt - YYYY]]></Description>
      <JS><![CDATA[//
// Display Officer Date of Appointment in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4464299933378617714"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="595648761072629636"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6db15336-6ea5-4ea5-a035-7e5db84807ae">
      <Description><![CDATA[Succ Officer: Date of Appt - Day with alpha suffix|Succ Officer: Date of Appt - alpha month|Succ Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Appt. of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7202616688133756218"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="11441772172294839102"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13966874666022774224"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="18267639242921822641"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3491756990879617807"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2680491709306926624"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1e18fb02-9f22-4b84-85b1-21da94e8603f">
      <Description><![CDATA[Succ Officer: Date of Appt - 2 digit day|Succ Officer: Date of Appt - alpha month|Succ Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Date of Appt. of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8383928250638469952"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="4710093177371480281"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15905658667081118645"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="3189263981679464294"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="18366582216062519394"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12503549196402557775"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6c70ec77-9aaf-497f-84f5-df8449a1e0d8">
      <Description><![CDATA[Succ Officer: Date of Appt - alpha month with a space + Day with alpha suffix|Succ Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Appt. of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3281331444160165774"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="7054421618167823995"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="5319085710086849503"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="1909481688517611034"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="9990175265264474135"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12459323020788062640"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.succ_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8942ca90-4f5f-4876-a6fb-27f8d52195fa">
      <Description><![CDATA[Pred - Legal Name]]></Description>
      <JS><![CDATA[tmp = equifax.pred_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16671125800314232675"><![CDATA[tmp = equifax.pred_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9ebe58d5-9668-45ac-bf46-d65d53d3f741">
      <Description><![CDATA[Pred - Trade/DBA Name]]></Description>
      <JS><![CDATA[tmp = equifax.pred_dba.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6004674485128726656"><![CDATA[tmp = equifax.pred_dba.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f300ace2-ef5a-43c5-aa07-d8dc470e3210">
      <Description><![CDATA[FEIN]]></Description>
      <JS><![CDATA[tmp = equifax.pred_fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3160445570166641421"><![CDATA[tmp = equifax.pred_fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0f6b961a-7a24-4dac-8dd7-f7414ebd0346">
      <Description><![CDATA[FEIN: 9 digits only]]></Description>
      <JS><![CDATA[tmp = equifax.pred_fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="7522986976031070088"><![CDATA[tmp = equifax.pred_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="909824818694252602"><![CDATA[tmp = equifax.pred_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b66bdfdd-c606-4851-964d-1550631a1b91">
      <Description><![CDATA[FEIN: Space instead of a hyphen]]></Description>
      <JS><![CDATA[tmp = equifax.pred_fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14135099283342156373"><![CDATA[tmp = equifax.pred_fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="73100c48-e219-444c-a5db-e61bd86bcdfe">
      <Description><![CDATA[FEIN: Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = equifax.pred_fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7522986976031070088"><![CDATA[tmp = equifax.pred_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="909824818694252602"><![CDATA[tmp = equifax.pred_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="75230aac-3fd7-488e-8771-62923f28706c">
      <Description><![CDATA[FEIN: First 2 digits|FEIN: Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13990634547990671488"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="17949512064716683984"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="80cf5aee-2818-4a1c-8b0a-18cd48682401">
      <Description><![CDATA[Phone: Pred Phone]]></Description>
      <JS><![CDATA[tmp = equifax.pred_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3846775809415477677"><![CDATA[tmp = equifax.pred_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3724ef93-0343-4c4b-b6f8-3519a7f05762">
      <Description><![CDATA[Phone: Pred Phone 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="14429409315719787393"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e7c8561a-f623-4db9-a2ce-1991948b94c3">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1635036676501525755"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11281214032631226406"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="18402413325623217757"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="16ff8da9-1f08-4d56-ad83-5fd7f1cf3f53">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4541468467689215630"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3199181900331903117"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15453642172149055507"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="74f9703d-fda5-4cc5-856b-c4d374d7f1e3">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6647692314372370264"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="17420494996411879246"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16911173301295256198"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="626dfa97-1363-4f95-b0c3-62c65dc1e109">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="15707685748026760655"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8828052515463654391"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16162654213099365112"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="95f7af26-c216-4c30-a5e8-c1a22dd3217d">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1440067988496139114"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="3688213022300345745"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2276074163119999112"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="072d429e-84ad-4241-b1b1-e02049475e5b">
      <Description><![CDATA[Phone: Pred Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="18086104174784208255"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11697345201133199763"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="5195897029486378032"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aeebbb27-a20e-4811-85fc-155269f8e84b">
      <Description><![CDATA[Phone: Pred Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2654622248569228596"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="11841289125580164015"><![CDATA[myMatches = myReg.exec(equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6770649472595256016"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9527073540961948155"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9520921122967925685"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="38479b9d-6615-4654-8ac8-384aeb15a6dc">
      <Description><![CDATA[Phone: Pred Phone Area Code|Phone: Pred Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11069415955550764321"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="17906781949575739024"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="16283705729497660143"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8ed871ee-2201-44c3-8c3a-4d4824f5e81f">
      <Description><![CDATA[Phone: Pred Phone Area Code|Phone: Pred Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2298660412132354916"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1759828611388014284"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="6585852947221375672"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b6e4d16c-add7-4b0f-a6d5-56f13f7143ab">
      <Description><![CDATA[Phone: Pred Phone Area Code in parenthesis|Phone: Pred Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14540586147844843981"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="8622661720332284574"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="5156951003470937063"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e0271ea8-e5dd-497d-84d7-ac904994c722">
      <Description><![CDATA[Phone: Pred Phone Area Code in parenthesis|Phone: Pred Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="2216957363102009692"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="3796550369671289315"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9944751380767015020"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d6649130-7808-4aa6-bc62-da1b133f4b8b">
      <Description><![CDATA[Phone: Pred Phone Area Code|Phone: Pred Phone 3 digit exchange|Phone: Pred Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="5918078281073637502"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d1c0d5cf-bbd7-4c7d-b842-ac0befd89f41">
      <Description><![CDATA[Phone: Pred Phone Area Code in parenthesis|Phone: Pred Phone 3 digit exchange|Phone: Pred Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.pred_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11901690107441480363"><![CDATA[condvar = (equifax.pred_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="777177244867811574"><![CDATA[condvar = (equifax.pred_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8042897854662842964"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9457242270992311647"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="1610797095968364591"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.pred_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d1aa67eb-a838-4d14-9a21-52e696ca0888">
      <Description><![CDATA[Address: Address 1]]></Description>
      <JS><![CDATA[tmp = equifax.pred_corp_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1494117905427544986"><![CDATA[tmp = equifax.pred_corp_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5b5b337-6855-434f-9951-f17ca03eb4d9">
      <Description><![CDATA[Address: Address 2]]></Description>
      <JS><![CDATA[tmp = equifax.pred_corp_address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13233187759647772974"><![CDATA[tmp = equifax.pred_corp_address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="56f2880d-b15a-4aa3-8e6b-6e1223529514">
      <Description><![CDATA[Address: Address 1 + Address 2]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="1121543067373037733"><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="230933d1-8bb6-4094-90b7-370997db06a1">
      <Description><![CDATA[Address: Address 1 + Address 2 + City]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + equifax.pred_corp_city).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6178495933966781841"><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + equifax.pred_corp_city).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e29eb0a4-b4ac-4792-9618-03da768b5246">
      <Description><![CDATA[Address: Address 1 + Address 2 + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + (equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10775412889237992234"><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + (equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cc57a897-daa0-47e5-8f82-e4536e4d1e86">
      <Description><![CDATA[Address: Address 1 + Address 2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + (equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6998130404558988947"><![CDATA[tmp = (equifax.pred_corp_address + ' ' + equifax.pred_corp_address2 + ' ' + (equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c647b8e2-4f6b-4fd2-8416-370b99a09bdd">
      <Description><![CDATA[Address: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10008437913305888644"><![CDATA[tmp = ((equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4312b14a-7920-42c0-8db0-4f796b764061">
      <Description><![CDATA[Address: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15846259937752828553"><![CDATA[tmp = ((equifax.pred_corp_city.trim().isEmpty() ? '' : equifax.pred_corp_city + ', ') + equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ceb12ab2-28e8-4410-8d4c-175f66a0e450">
      <Description><![CDATA[Address: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9687282079660064333"><![CDATA[tmp = (equifax.pred_corp_state + ' ' + equifax.pred_corp_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b8b27a48-e1ed-4666-8cc3-e326bcf9c89e">
      <Description><![CDATA[Address: City]]></Description>
      <JS><![CDATA[tmp = equifax.pred_corp_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9739476806160234888"><![CDATA[tmp = equifax.pred_corp_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c4bb05b9-bac7-4d84-a05c-e96423ad8d50">
      <Description><![CDATA[Address: State]]></Description>
      <JS><![CDATA[tmp = equifax.pred_corp_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8565732054230235093"><![CDATA[tmp = equifax.pred_corp_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ff63718e-fcbb-431a-a7df-4093294fabdc">
      <Description><![CDATA[Address: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.pred_corp_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18049086428395175745"><![CDATA[tmp = equifax.pred_corp_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="793fabff-75d7-4b92-8f6f-c6bb4fdc2b98">
      <Description><![CDATA[Address: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="7403856281913080415"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="93288fb7-f1bf-4d64-8d73-f0784e59f5f0">
      <Description><![CDATA[Address: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="7403856281913080415"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8dd00436-7000-4f1f-b333-874e27765833">
      <Description><![CDATA[Address: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="14927264363115674486"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="14381756653795652458"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="13702921468283433470"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0910bfa1-4aab-4d6c-b763-fba0002ac124">
      <Description><![CDATA[Address: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10457606677234412292"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="15609246134472185406"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="4054470903390516622"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e681739d-7625-4e14-81af-dcc72ce6ca7c">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="7403856281913080415"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a386efff-2ea9-4ab1-be69-b208800c05db">
      <Description><![CDATA[Address: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="12338405536859964268"><![CDATA[myMatches = myReg.exec(equifax.pred_corp_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10940049136629437918"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="3009015425638704248"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
        <JSExpression hash="1982150785977745716"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.pred_corp_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b823b75a-6c5b-4f12-8ee1-60634bc351e1">
      <Description><![CDATA[Address: Zip Code 5 digits|Address: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_corp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_corp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="7388358235176243093"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_corp_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_corp_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="40238923-ae4e-4862-b202-0ff62f117b00">
      <Description><![CDATA[Pred Contact Name]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8126522994044787812"><![CDATA[tmp = equifax.pred_contact_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="920f9003-2b8e-48d4-8804-13529bd1a2dc">
      <Description><![CDATA[Phone: Pred Contact Phone]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_phone.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11064670555095860108"><![CDATA[tmp = equifax.pred_contact_phone.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c2851168-60c6-4cc8-9398-09532b89286d">
      <Description><![CDATA[Phone: Pred Contact Phone 10 digits only]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 9999999999 - defaults to .strip:
//
myReg = /^([0-9]{10})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3742031549727474942"><![CDATA[myReg = /^([0-9]{10})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="2012478876650226516"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b6cef17c-3869-4a5d-b427-b93222130b2a">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17539586115216506841"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="15244609149382838675"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12463141169734355441"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fca7f3e1-d640-4652-a033-a27e40686076">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999-999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9548820565019722368"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="10203063975118141423"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="16920037590001941530"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="02a562de-ef34-4042-b409-6f280215e204">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: 999 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4864730859020923197"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="9793155569669138521"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="14167971684829963482"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="04ef9eac-7a0c-42e1-b636-ab7e15b77e6c">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999 9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="850570693476904377"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + " " + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12057089139008233273"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + " " + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="18337691987304549748"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + ' ' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c0491a70-a85d-4524-8243-c5c00bf3ec01">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits in parenthesis, space, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999) 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14505214501920744434"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ") " + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="11615710545382771483"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ") " + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8482873398740053224"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ') ' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7ffe46c6-db41-4210-a8c9-a5615d91d9ae">
      <Description><![CDATA[Phone: Pred Contact Phone Area code 3 digits in parenthesis, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number: (999)999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="6902137771713064248"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8745920204270153380"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + (myMatches[1]) + ")" + (myMatches[2]) + "-" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="12152592305454731134"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("(" + myMatches[1] + ")" + myMatches[2] + "-" + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="4957665719119903927"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ('(' + myMatches[1] + ')' + myMatches[2] + '-' + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="75c59f9b-449b-4fa6-8353-02609678b9ae">
      <Description><![CDATA[Phone: Pred Contact Phone 7 digits with a hyphen or 3 digit area code, hyphen, 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// 10 digit Phone number 999-999-9999 or a 7 digit phone number 999-9999 - defaults to .strip:
//
myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;
myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="5650455529051216470"><![CDATA[myReg = /^([0-9]{3})([0-9]{3})?([0-9]{4})$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="15038926414263706458"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="3497029713630897714"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4328010786288930288"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="2168746027577401109"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
        <JSExpression hash="8257564577547399559"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + ((myMatches[2] ? myMatches[2] + '-' : '')) + myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="db94d07d-ed95-4b3e-b4f0-8ee030edd786">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code|Phone: Pred Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7071115662980743205"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4972936672410659833"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="11440174121043689149"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b2c00a91-bdcb-4b9c-b31c-f90b44cc817b">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code|Phone: Pred Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. 999 in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="8395449399645969025"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="13542774569445494900"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="4123952872139537391"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6f085a5d-04e6-42f8-871c-b298b5965c49">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code in parenthesis|Phone: Pred Contact Phone 3 digit exchange, space, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999 9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="3327708280363896810"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + " " + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="14705547090698897883"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + " " + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="15929184498075216278"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + ' ' + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="ab6db442-de66-4cf2-b8c6-e6a651fd0466">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code in parenthesis|Phone: Pred Contact Phone 3 digit exchange, hyphen, 4 digits]]></Description>
      <JS><![CDATA[//
// Area code boxed separately [first box]. (999) in first box; 999-9999 in second box.
// Defaults to .strip in second box.
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7152213914779691874"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", ("" + (myMatches[2]) + "-" + (myMatches[3]) + ""));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="10554673768237218533"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", (myMatches[2] + "-" + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9953924289352019290"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[2] + '-' + myMatches[3]));
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="543806dd-b245-447e-a486-16a88400bf45">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code|Phone: Pred Contact Phone 3 digit exchange|Phone: Pred Contact Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box, exchange in second, etc..], else if there are ony 7 digits in the phone number
// then we will assume that there is no area code, so the exchange and number boxes will
// be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression hash="4858938528051554179"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4dd8c9de-d2eb-4d7b-b392-5cb8e80e41ab">
      <Description><![CDATA[Phone: Pred Contact Phone Area Code in parenthesis|Phone: Pred Contact Phone 3 digit exchange|Phone: Pred Contact Phone 4 digit number]]></Description>
      <JS><![CDATA[//
// Phone number broken into 3 boxes:
//
// If there are 10 digits in the number then we will put the pieces in place [area code in
// first box - in parenthesis, exchange in second, etc..], else if there are ony 7 digits in
// the phone number then we will assume that there is no area code, so the exchange
// and number boxes will be utilized.
//
// If both of the above conditions are false, then we will default to the .strip version
// and put it in the number box [the far right in the 3 box group].
//
condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));
myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);
myMatches = myReg.exec(condvar);
if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6941683813436613023"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="16177218909319574029"><![CDATA[condvar = (equifax.pred_contact_phone.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression hash="9634477205712308921"><![CDATA[myReg = (/^([0-9]{3})?([0-9]{3})([0-9]{4})$/);]]></JSExpression>
      <JSExpression hash="10363000012803599886"><![CDATA[myMatches = myReg.exec(condvar);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7443267998553425408"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + (myMatches[1]) + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="12212614996428900590"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", ("(" + myMatches[1] + ")"));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
    ;
}]]></JSExpression>
        <JSExpression hash="9767564997520181146"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    if (myMatches[1]) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_1', ('(' + myMatches[1] + ')'));
    }
    ;
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
else {
    tmp = equifax.pred_contact_phone.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', tmp);
    }
    ;
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1fb7e4c3-603a-4958-b4c0-c21ecd32c7af">
      <Description><![CDATA[Pred Contact Addr: Addr1]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_mailing_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5015385029828766411"><![CDATA[tmp = equifax.pred_contact_mailing_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="17cb5be1-fe09-4059-9105-4205e14fa5e3">
      <Description><![CDATA[Pred Contact Addr: Addr2]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_mailing_address2.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11006758223010154175"><![CDATA[tmp = equifax.pred_contact_mailing_address2.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0f753bb5-9d72-4ef1-b2dc-98e90767c0b6">
      <Description><![CDATA[Pred Contact Addr: Addr1 + Addr2]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18205108547157616274"><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fdf3d8d7-75e4-4bf4-bf9c-11def5a96362">
      <Description><![CDATA[Pred Contact Addr: Addr1 + Addr2 + City]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + equifax.pred_contact_mailing_city).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8637042362727134881"><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + equifax.pred_contact_mailing_city).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a2064df4-aa38-4f74-bb16-5d5889f81534">
      <Description><![CDATA[Pred Contact Addr: Addr1 + Addr2 + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16934228459829861220"><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="aaba3cf4-35c2-478a-82c2-e4413bcaaf2d">
      <Description><![CDATA[Pred Contact Addr: Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ');
tmp = ("" + (equifax.pred_contact_mailing_address) + " " + (equifax.pred_contact_mailing_address2) + " " + (tmp) + "" + (equifax.pred_contact_mailing_state) + " " + (equifax.pred_contact_mailing_zip) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2410308867630361932"><![CDATA[tmp = (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ');]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9631887415845596046"><![CDATA[tmp = ("" + (equifax.pred_contact_mailing_address) + " " + (equifax.pred_contact_mailing_address2) + " " + (tmp) + "" + (equifax.pred_contact_mailing_state) + " " + (equifax.pred_contact_mailing_zip) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="15661286678126703444"><![CDATA[tmp = (equifax.pred_contact_mailing_address + " " + equifax.pred_contact_mailing_address2 + " " + tmp + equifax.pred_contact_mailing_state + " " + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="2255175585320537933"><![CDATA[tmp = (equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + tmp + equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5bf2aca6-f806-4d2f-8484-0325fad3da62">
      <Description><![CDATA[Pred Contact Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16019882498555768802"><![CDATA[tmp = ((equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8cf13a87-bccb-44b4-a298-79387e4fcfed">
      <Description><![CDATA[Pred Contact Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2930486903567103384"><![CDATA[tmp = ((equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e9702e18-1ade-4b78-b977-f10addea1a15">
      <Description><![CDATA[Pred Contact Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10803563193136668112"><![CDATA[tmp = (equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="265a82df-7ce5-40cf-be63-973876cbe90f">
      <Description><![CDATA[Pred Contact Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_mailing_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10321063522976518959"><![CDATA[tmp = equifax.pred_contact_mailing_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c47ba944-89eb-49e3-8c3c-68a767eb47bf">
      <Description><![CDATA[Pred Contact Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_mailing_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3430053115875500255"><![CDATA[tmp = equifax.pred_contact_mailing_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="077329fc-14a9-40f4-83d2-c22c9d39b856">
      <Description><![CDATA[Pred Contact Addr: Zip]]></Description>
      <JS><![CDATA[tmp = equifax.pred_contact_mailing_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11151411413534961140"><![CDATA[tmp = equifax.pred_contact_mailing_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f2532c00-9bcb-4c9d-838f-f2c7a86e89ff">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16767325007149196541"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="154e99d2-b555-429a-b5cc-c5511bfae4a6">
      <Description><![CDATA[Pred Contact Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16767325007149196541"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="21f9b9c5-8a63-49aa-94de-ffb3ca668c92">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9364419747911505744"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="5758892352718036766"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11310156006476832105"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0dbf9b1a-88a7-4749-a1ee-4434a20915de">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17524502190542408868"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="11072828357902770732"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="2080074638885337921"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="55018bf8-4cdc-43de-a70a-d8c372e554b8">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="16767325007149196541"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e1c2c3cb-161b-46e4-a39c-e212efa0c0c5">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="17936726940541829688"><![CDATA[myMatches = myReg.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="7125009556155658984"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12830626098953836356"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12309702017233953907"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8b0b14a3-8bbb-4c93-8f0e-22b7d0a84431">
      <Description><![CDATA[Pred Contact Addr: Zip Code 5 digits|Pred Contact Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="10482996963057857555"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_contact_mailing_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_contact_mailing_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d03bb21a-d296-48ac-a171-36d8cc2d0f96">
      <Description><![CDATA[Pred Contact: Name + Phone]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_name + ' ' + equifax.pred_contact_phone).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="983951424247797184"><![CDATA[tmp = (equifax.pred_contact_name + ' ' + equifax.pred_contact_phone).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d95b4cc1-03bf-4e45-8fde-90895df58800">
      <Description><![CDATA[Pred Contact - Name + Addr: Name + Addr1 + Addr2 + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_contact_name + ' ' + equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6147999501679006916"><![CDATA[tmp = (equifax.pred_contact_name + ' ' + equifax.pred_contact_mailing_address + ' ' + equifax.pred_contact_mailing_address2 + ' ' + (equifax.pred_contact_mailing_city.trim().isEmpty() ? '' : equifax.pred_contact_mailing_city + ', ') + equifax.pred_contact_mailing_state + ' ' + equifax.pred_contact_mailing_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="71d9f280-b406-4f84-9efb-dba28c687429">
      <Description><![CDATA[Pred Date of Trans]]></Description>
      <JS><![CDATA[tmp = equifax.pred_transaction_date.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16867383330952378001"><![CDATA[tmp = equifax.pred_transaction_date.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="029b6294-c27b-4b7d-9cca-21465d9ce28e">
      <Description><![CDATA[Pred Date of Trans: MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="18007200342169846991"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="11660446865796284691"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="1010003046336376484"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0a557b3b-dc53-4ee6-b3b6-70dbc9f05e7b">
      <Description><![CDATA[Pred Date of Trans: MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4301460964877640326"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="1978524294662291070"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="5080447540819380532"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af2c9f4a-e894-45a4-8288-63534709f464">
      <Description><![CDATA[Pred Date of Trans: MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10164326432375718418"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="14097112401172233867"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="8930476993992838620"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9280e155-f09c-41fe-ad86-48cb7860a127">
      <Description><![CDATA[Pred Date of Trans: MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7627608533961684783"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="9286406544512086351"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="158f71c4-6958-4e39-8fe0-1b04a93e6d93">
      <Description><![CDATA[Pred Date of Trans: MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9486868029517623721"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="15379551820567527749"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="2051721072862248946"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="854f466f-dc8e-4778-80c4-8a08d9a7dc3a">
      <Description><![CDATA[Pred Date of Trans: MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8270134241023276819"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="11839861916996478573"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="2644850790072140779"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c1d80970-dd9f-48fa-a58e-f0c6f3d9baa0">
      <Description><![CDATA[Pred Date of Trans: MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="3159072309299884215"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="8578040668180138821"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="14333125731505424996"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="267524eb-832d-41f7-bb84-d9cb15802fcd">
      <Description><![CDATA[Pred Date of Trans: MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Date of Transaction as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="12702155942103097997"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="2669618723662328642"><![CDATA[myMatches = myReg.exec(equifax.pred_transaction_date.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12935889647497871314"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="10529830236528752292"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
        <JSExpression hash="5329312943185600599"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_transaction_date.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cdfdc68d-bceb-454a-9c0e-3337eabdb5dc">
      <Description><![CDATA[Pred Date of Trans: MM|Pred Date of Trans: DD|Pred Date of Trans: YY]]></Description>
      <JS><![CDATA[//
// Display Date of Transaction in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="307024818776751586"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="4872437513039014348"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="eb98d081-1e43-4d58-8f64-1bec5db0e1ff">
      <Description><![CDATA[Pred Date of Trans: MM|Pred Date of Trans: DD|Pred Date of Trans: YYYY]]></Description>
      <JS><![CDATA[//
// Display Date of Transaction in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7367056043027692863"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14365944854194922498"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e09a9d6b-62de-4fe9-9887-4f4c742b6b62">
      <Description><![CDATA[Pred Date of Trans: Day with alpha suffix|Pred Date of Trans: alpha month|Pred Date of Trans: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Transaction displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Transaction of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="15780207343553398500"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="633510962714887518"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="7494157960360462282"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="613881889170430449"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="13257852320621894499"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6177178498477935657"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5b70b192-1617-4e3b-931e-dd2a97e7a70b">
      <Description><![CDATA[Pred Date of Trans: 2 digit day|Pred Date of Trans: alpha month|Pred Date of Trans: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Transaction displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Date of Transaction of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13438217065354810133"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="16405107586171679761"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2868441740821113238"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10302826401990576499"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="16949891003965454495"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="8088252256137579626"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="25c57e14-4f67-4dc6-b756-583a685e05d5">
      <Description><![CDATA[Pred Date of Trans: alpha month with a space + Day with alpha suffix|Pred Date of Trans: 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Transaction displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Transaction of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6887884926836171168"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="8160799046754747121"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17669618760412789446"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17272178663903897168"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="12573091328327421084"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17049369968649407399"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_transaction_date.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a8880e3b-8d8c-4a5a-99d0-f226a5be890a">
      <Description><![CDATA[Pred Operating At Time Of Purch: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_operating_at_time_of_purchase_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10410236085039781084"><![CDATA[if ((!equifax.pred_operating_at_time_of_purchase_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="49abe095-b768-48d5-a4c2-e713954ff703">
      <Description><![CDATA[Pred Operating At Time Of Purch: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_operating_at_time_of_purchase_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="15192625580733048376"><![CDATA[if ((!equifax.pred_operating_at_time_of_purchase_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b12ef73a-962d-42fb-8215-7ea3044f7a30">
      <Description><![CDATA[Pred Trans Type: Asset Purchase - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_asset_purchase.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6415331858110470772"><![CDATA[if ((!equifax.pred_transaction_type_asset_purchase.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1dc58bec-31f5-457b-99c7-24fdd4340ea4">
      <Description><![CDATA[Pred Trans Type: Stock Purchase - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_stock_purchase.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="8835705677090156728"><![CDATA[if ((!equifax.pred_transaction_type_stock_purchase.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="87420a89-ca7d-4160-93a1-fe74d15725fe">
      <Description><![CDATA[Pred Trans Type: Company Reorg - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_company_reorg.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="8108680882954309572"><![CDATA[if ((!equifax.pred_transaction_type_company_reorg.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b8758e2-96e8-4391-9829-4bbea5b8037c">
      <Description><![CDATA[Pred Trans Type: Salutory Merger - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_salutory_merger.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="6202760429239945533"><![CDATA[if ((!equifax.pred_transaction_type_salutory_merger.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="50770ab1-f087-4c7e-bd13-05a67820dbd1">
      <Description><![CDATA[Pred Trans Type: Other - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5539216049205955169"><![CDATA[if ((!equifax.pred_transaction_type_other_checkbox.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b9709ef2-0b56-4938-b895-b875156a177a">
      <Description><![CDATA[Pred Trans Type: Other - Description]]></Description>
      <JS><![CDATA[tmp = equifax.pred_transaction_type_other_list.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15419082444386997601"><![CDATA[tmp = equifax.pred_transaction_type_other_list.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a37cd268-f7ba-4466-a582-0773f57cc8dc">
      <Description><![CDATA[Pred Trans Type: Other - Check Box|Pred Trans Type: Other - Description]]></Description>
      <JS><![CDATA[//
// Check the 'Other' box and provide the description.
//
if (!((equifax.pred_transaction_type_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_transaction_type_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="10589039014857583934"><![CDATA[if (!((equifax.pred_transaction_type_other_checkbox.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_transaction_type_other_list.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c72339d2-b7fc-4a24-bc0c-89e0c29bc91a">
      <Description><![CDATA[Pred Trans Type: Employee Reassignment Only - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_employee_reassignment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12738738511393214977"><![CDATA[if ((!equifax.pred_transaction_type_employee_reassignment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3f9b7f39-7e08-4b1e-99c4-8b5bbf20d7c0">
      <Description><![CDATA[Pred Trans Type: Bankruptcy Acq - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_bankruptcy_acq.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5033017991160337783"><![CDATA[if ((!equifax.pred_transaction_type_bankruptcy_acq.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a6685161-3534-4466-860d-87bc857b5a6c">
      <Description><![CDATA[Pred Trans Type: Entity Conversion - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_transaction_type_entity_conversion.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="3225559339491102292"><![CDATA[if ((!equifax.pred_transaction_type_entity_conversion.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5c2d53a6-96c0-47de-baad-885cb924fd6e">
      <Description><![CDATA[Pred All/Part Employ in Each State: All - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acq_all_employment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="14832173805639418254"><![CDATA[if ((!equifax.pred_acq_all_employment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8fae2bf1-14a2-40dc-85ab-b47729b00ad2">
      <Description><![CDATA[Pred All/Part Employ in Each State: Partial - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acq_partial_employment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="13709524509578184056"><![CDATA[if ((!equifax.pred_acq_partial_employment.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c01aad2b-0f7e-4317-bf88-debda4941eda">
      <Description><![CDATA[Pred Employment Agency: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_emp_agency_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="9022704578567831229"><![CDATA[if ((!equifax.pred_emp_agency_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="36dd2dca-4a40-4928-9b23-03a1d421c632">
      <Description><![CDATA[Pred Employment Agency: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_emp_agency_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="10819470401154083311"><![CDATA[if ((!equifax.pred_emp_agency_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="878f5853-7ddf-4cf0-9b0b-da5ef5c37b05">
      <Description><![CDATA[Pred Business Activity Description]]></Description>
      <JS><![CDATA[tmp = equifax.pred_business_description.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="14873201686171123584"><![CDATA[tmp = equifax.pred_business_description.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d9aefac5-5d72-4989-9aa8-7fbb3a30d78c">
      <Description><![CDATA[Pred Commonly Owned: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_succ_commonly_owned_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="9016081314725769566"><![CDATA[if ((!equifax.pred_succ_commonly_owned_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="96f54c34-9629-4994-9a31-7f9489418d65">
      <Description><![CDATA[Pred Commonly Owned: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_succ_commonly_owned_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="5638504724249782091"><![CDATA[if ((!equifax.pred_succ_commonly_owned_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7b8cd008-9f4a-41ab-af35-e4e05bc67fc0">
      <Description><![CDATA[Pred Commonly Owned: Percentage]]></Description>
      <JS><![CDATA[tmp = equifax.pred_succ_commonly_owned_percent.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13199711027861053542"><![CDATA[tmp = equifax.pred_succ_commonly_owned_percent.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="492d3841-97fc-4686-abbc-71f43c80ec88">
      <Description><![CDATA[Pred Commonly Owned: Relationship]]></Description>
      <JS><![CDATA[tmp = equifax.pred_succ_relationship_described.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3535831311207682476"><![CDATA[tmp = equifax.pred_succ_relationship_described.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6681d1c5-a628-4a58-8a17-bc1d0b6bcf56">
      <Description><![CDATA[Pred Commonly Owned: YES - Check Box|Pred Commonly Owned: Percentage]]></Description>
      <JS><![CDATA[//
// If the successor and predecessor are commonly owned: Check the 'YES' box; flow the percentage.
//
if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_commonly_owned_percent.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="10386330027157222047"><![CDATA[if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_commonly_owned_percent.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="ebfc01da-5c99-4fa2-9754-d268292859b7">
      <Description><![CDATA[Pred Commonly Owned: YES - Check Box|Pred Commonly Owned: Relationship]]></Description>
      <JS><![CDATA[//
// If the successor and predecessor are commonly owned: Check the 'YES' box; flow the relationship description.
//
if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_relationship_described.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="8140368904717647678"><![CDATA[if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_relationship_described.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a292525f-9a3c-4531-b385-9f19a92bac72">
      <Description><![CDATA[Pred Commonly Owned: YES - Check Box|Pred Commonly Owned: Percentage|Pred Commonly Owned: Relationship]]></Description>
      <JS><![CDATA[//
// If the successor and predecessor are commonly owned: Check the 'YES' box; flow the percentage; flow the relationship description.
//
if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_commonly_owned_percent.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_succ_relationship_described.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="3198204163155517674"><![CDATA[if (!((equifax.pred_succ_commonly_owned_yes.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_succ_commonly_owned_percent.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_succ_relationship_described.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d35e5e2c-ce17-40a2-ab5a-5e45c87bdeed">
      <Description><![CDATA[Pred Assets Trans/Acq: Accounts Receivable - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_acct_rec.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="2712540860954494560"><![CDATA[if ((!equifax.pred_acquired_assets_acct_rec.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="98f4d735-3632-45eb-a75c-bb749b566aea">
      <Description><![CDATA[Pred Assets Trans/Acq: Machinery or Equip - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_machinery_equip.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="18237627369655463689"><![CDATA[if ((!equifax.pred_acquired_assets_machinery_equip.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="af68011d-8792-468f-b9ad-48193a4edb67">
      <Description><![CDATA[Pred Assets Trans/Acq: Furniture Or Fixtures - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_furniture_fixtures.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11091979964573572141"><![CDATA[if ((!equifax.pred_acquired_assets_furniture_fixtures.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fab20e9c-1012-44f2-8e68-8d66cc169d55">
      <Description><![CDATA[Pred Assets Trans/Acq: Goodwill - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_goodwill.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="7057523825871928143"><![CDATA[if ((!equifax.pred_acquired_assets_goodwill.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d5caa2db-3f59-4e2f-a579-09faf8ddb51a">
      <Description><![CDATA[Pred Assets Trans/Acq: Buildings - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_buildings.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="1682145056996096202"><![CDATA[if ((!equifax.pred_acquired_assets_buildings.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="48d776a5-0d08-4036-9865-8f17280e0cd0">
      <Description><![CDATA[Pred Assets Trans/Acq: Stock - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_stock.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="749663793307606373"><![CDATA[if ((!equifax.pred_acquired_assets_stock.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fa89278b-23b4-49bf-bfd7-319ad0fbdfa2">
      <Description><![CDATA[Pred Assets Trans/Acq: Other Real Prop Leases - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_other_real_prop_leases.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="8907912009754785610"><![CDATA[if ((!equifax.pred_acquired_assets_other_real_prop_leases.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1a602d92-9a0f-4b5e-80d3-a0004681d4d7">
      <Description><![CDATA[Pred Assets Trans/Acq: Customer Lists - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_customer_lists.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="337417932335098246"><![CDATA[if ((!equifax.pred_acquired_assets_customer_lists.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="59d8f826-abc5-4a79-9029-6663046b1dda">
      <Description><![CDATA[Pred Assets Trans/Acq: Employees - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_employees.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="17848580322022887700"><![CDATA[if ((!equifax.pred_acquired_assets_employees.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8e120b24-1399-464f-98ce-322e0674728e">
      <Description><![CDATA[Pred Assets Trans/Acq: Inventories - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_acquired_assets_inventories.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="16908095495333992169"><![CDATA[if ((!equifax.pred_acquired_assets_inventories.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e618b4f4-04c7-417e-9ddf-222faf8389db">
      <Description><![CDATA[Pred Cont To Report Wages: YES - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_will_report_wages_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="12970269056125418410"><![CDATA[if ((!equifax.pred_will_report_wages_yes.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="430b0932-36b3-4ffa-a5d3-8171ccf3d12e">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box]]></Description>
      <JS><![CDATA[if ((!equifax.pred_will_report_wages_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JS>
      <JSExpression hash="11318625915125358109"><![CDATA[if ((!equifax.pred_will_report_wages_no.trim().isEmpty())) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="63be3443-b388-444b-bf82-223d87e8fb31">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp]]></Description>
      <JS><![CDATA[tmp = equifax.pred_last_date_of_emp.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="164084850296907303"><![CDATA[tmp = equifax.pred_last_date_of_emp.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5dc58a53-f1f6-4ea1-af39-49cd544b6cff">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6830207959724045736"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="1975722201789498361"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="17857651041172771508"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="979518bb-0a7c-43a2-a620-83a515ad489e">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="7519594240307098330"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="3369974016733546714"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="12701749795020267253"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f764950e-478a-4012-8720-3edb3316cee9">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5754874183718454331"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="10377250811129551923"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="6994722985043277463"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b716252c-8d7f-45a2-b71a-a0155cd80956">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="4176244149363295568"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="610620024926588756"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="553b82ab-65f4-4284-8640-4b4921700e16">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5763200622861870012"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="7330971204008526919"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="16721459099473396928"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="54973413-2b55-41d7-bd64-d15dda13e66d">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9411738891366585344"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="3976814579564061671"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="2389028775482479996"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a437e5ea-2d73-4a6c-9863-294cbed70cbc">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13231559376586311718"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="10333055845348968689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="1259783305233159219"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="cbc8dedc-bfc3-422b-ab6d-d66bd50a7779">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Last Date of Employment as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="18289886357063334973"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="13561962193929237470"><![CDATA[myMatches = myReg.exec(equifax.pred_last_date_of_emp.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10616782091979642123"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="12276701747630208342"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
        <JSExpression hash="1533358681400961403"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_last_date_of_emp.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="58f732e0-ab6b-4b15-afe5-78b0541e08b3">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YY]]></Description>
      <JS><![CDATA[//
// Display Last Date of Employment in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1141329199860233926"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6481367975020983633"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="50d6eb5e-ac37-4d84-b76c-f416461810f5">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YYYY]]></Description>
      <JS><![CDATA[//
// Display Last Date of Employment in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2603884586024538754"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="7623320855648466260"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="efafecfd-90c7-44d1-8087-1d45e75e79fb">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// Last Date of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Date of Employment of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3065951305254493230"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="15679791874099579457"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="11484760589319786722"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="4813396943587624923"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="7564206475424895376"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="7731104641183173296"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="73c17adb-8a19-46b8-aa4b-16090bed2e94">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - 2 digit day|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// Last Date of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Last Date of Employment of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12433450127305985126"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="6141475815137581054"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15176971318184034507"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="180665881978610261"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="13980980939253235353"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9754273984235463532"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="468630f7-dbb9-470c-9870-3c4d33c7588c">
      <Description><![CDATA[Pred Cont To Report Wages: Last Date Of Emp - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// Last Date of Employment displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Date of Employment of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8450624448004979934"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3076153652947832043"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10544874398693635535"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="1012788706575729848"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="7779001155676129703"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="7586029217615997367"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1b45aa84-2151-4c6c-97a0-453a939c5aad">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll]]></Description>
      <JS><![CDATA[tmp = equifax.pred_date_of_last_payroll.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="9173722584128308992"><![CDATA[tmp = equifax.pred_date_of_last_payroll.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="272c9dce-e3e1-4415-a9d6-30c51bb2ea60">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17739305788897385789"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="10439093258007652098"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="14828065543923687445"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9348c814-05e8-441d-866c-2b3c8373c2e5">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1374102166802435548"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="11255464328984968249"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="16854458879874021958"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="473eb80a-fa3b-4b0f-9bc0-bd248efc294e">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13992794164644040228"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="269723267343376953"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="12876280597463551199"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5ebc13b1-acaf-40c9-8936-dffbc8bdd1ca">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10787513319024902396"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="244968559196482742"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="999ec40a-8258-44eb-ad9c-d236c35943e3">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12672928593067523747"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="13072983645900112674"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="9699052751407329705"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="038b08c4-37e4-452f-b683-c8cff11053b0">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="12601829799583243102"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="3212433199139467647"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="3706132182930216522"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f79eb7d2-a4d6-408e-85dd-a8bbab927ed3">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8211809777350736751"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="5783038423777719626"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="17386632441405753333"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="82498977-d098-45f8-8231-7e537099aa5a">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Date of Last Payroll as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="11799050710846635345"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="4593265530192225098"><![CDATA[myMatches = myReg.exec(equifax.pred_date_of_last_payroll.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11859817597410310136"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="7830769928997415991"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
        <JSExpression hash="3743012626153905590"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_date_of_last_payroll.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="abbbd226-b0fa-4b1e-a1b2-3fb982a73542">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YY]]></Description>
      <JS><![CDATA[//
// Display Date of Last Payroll in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8660848468490933780"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="155886105798538527"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="dd18082e-c396-4fda-86a1-1b7bfe5a6541">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YYYY]]></Description>
      <JS><![CDATA[//
// Display Date of Last Payroll in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6302787867840150953"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10828261368190081854"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="748c43c6-6366-4b74-9ab3-c03e7cdab9d6">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Last Payroll displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Payroll date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13757836941458540330"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="1072479772700744869"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="15815127594092426016"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12116468550854592652"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="16285451188058290686"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2316705901653735486"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="78ada7b1-c473-4302-8c99-a576ed962d89">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - 2 digit day|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Last Payroll displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Last Payroll date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16342763128549405256"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="9232040983423239406"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="5234897595919263616"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10862497635806840246"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="1509213265977137095"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9834610934506891070"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="bcb662d1-931f-4754-af21-678b1904e869">
      <Description><![CDATA[Pred Cont To Report Wages: Date Of Last Payroll - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Last Payroll displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Payroll date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11486941877790793873"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="11704450017614645130"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6624356767354239284"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16972073770571314681"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="6707553150111173833"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="14610433990206968729"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="dc45e709-6569-4bc2-acb0-b9c165d22104">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="8640542101778676149"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="db85ffb8-8451-4a42-b13c-2eaa325acbf2">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM/DD/YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1604558530600808631"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11707046999346902274"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4453483762982232968"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="3827955820414106937"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="924508013777152196"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11640397938317414413"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="559ee257-af33-4908-aed0-f111f3f504de">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM-DD-YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11965716169355070454"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="14068107992672450261"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13289352132865933488"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="14591223057354493832"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="16886346876989687448"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="16827204697857855421"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="47063bb7-d340-4acc-b6a0-d343e2d0f4c1">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM DD YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM DD YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="610009783193253976"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="1822600577505979244"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17946455180695510470"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17909340981081790075"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13298468352261645920"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10864733541352106267"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e602824c-00a2-4a14-a1d2-be428949cc59">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MMDDYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MMDDYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8963574163470170815"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="1849092450032384541"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="7881971366469121355"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13657030133820228601"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11993675459202051635"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="12816271661953035072"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="fa6a067c-57c1-43d4-bd85-2ad49add0574">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM/DD/YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="935177796823378676"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="9090830208608668240"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4636893710416033481"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17614494599743288105"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10535206652618793884"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4655019047934820007"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0ebfcd34-a06a-476d-b5af-c096614628ef">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM-DD-YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5560115212252212794"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10452962143067893538"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11044596239076941014"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4456670183292657707"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="16632503265674906031"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="6898882240979519853"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6f82211e-051e-4cd4-be48-94c9c06b0be7">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MM DD YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16194806172886890321"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13085638220870199384"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13132192960719819144"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="3922178629028838681"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="8134816303378507053"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="2775353471625111027"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3af06152-4f87-4dd2-b3f3-be6c4889ffb0">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment as "MMDDYYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9067086777442033564"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="16418656266424630222"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4566707299448093978"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="6223478315635386682"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4411436669685716575"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11950066059905686418"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5ecf3e1d-524c-4c95-91bd-ece0ef503234">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment to 3 boxes using a
// 2 digit year. There is no default. This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16628461411483646764"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="4214311980777690395"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8c2b2125-1f0a-4dcc-b78d-252dbf507ac8">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YYYY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment to 3 boxes using a
// 4 digit year. There is no default. This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7177144741539075192"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="12002197990413361681"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e99b7fd0-c27a-43ce-8e4f-1ecc411e71b0">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow last date of employment as follows:
//
// Last Date of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Date of Employment of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="17904237960242170164"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="15676214111885416729"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="10611675396403804661"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="8557840283761456630"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="11348786560382140987"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="9213223181379479973"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a4ae2900-a577-4806-853c-62663d6942f5">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - 2 digit day|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow last date of employment as follows:
//
// Last Date of Employment displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Last Date of Employment of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1639926183365875924"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="1403047356107376969"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="16342705735378115034"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="1153627032328871628"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="12529503588648006035"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="2081051331318887939"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1c2ed0c3-9ace-463c-82f9-c1e27e6fec58">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow last date of employment as follows:
//
// Last Date of Employment displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Date of Employment of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4698813813396072958"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="5717131343269419197"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="14532956220107096602"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="15263086602327180390"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="10077949216420639391"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="16233521655200279863"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="0042d454-d472-4773-b3bf-b525253de32b">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_date_of_last_payroll.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JS>
      <JSExpression hash="15152173901180145237"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_date_of_last_payroll.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="857a9f88-0f39-4051-9616-7883ab1a047d">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM/DD/YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="14186157847330497172"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="579510639641697434"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="18059265004897516640"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="926537557434192640"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11120427017292720245"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="9820162503490357398"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2f89403f-fe18-438d-93da-e99287942e5c">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM-DD-YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13972760229041866791"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17302288571038630778"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10522631493531515029"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4923393854251431982"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4121566243641289165"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="9409044446091384820"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="368b5a66-25e1-487c-8779-89e79f0944d4">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM DD YY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM DD YY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12837760653465268089"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="8314299400740449053"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="13861218373728771932"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4609880859286346343"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10941101027281444237"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="8309735224627330911"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="e296f28f-bde2-4c78-8ea7-25b1aeb3ccb4">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MMDDYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MMDDYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="16008917566643866405"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="14802705920021595676"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="1538797626877004447"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17177878142028655577"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[3]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11828035473384195700"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="12162132816470809426"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d{4})(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3269b96c-b4f1-49b1-800d-0f507e693e54">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM/DD/YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10532992506374857312"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="14355195784141433130"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="4410705936736625363"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="12223431863675774592"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="7737107216766630661"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="8183144558051162586"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6fc9e6bb-f55d-4f34-b752-2b4c97efc6e4">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM-DD-YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11491854424288977219"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10967641976181667362"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="15588937269229376977"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="9066525338793640604"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="15135416807618588674"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="6613182767038944543"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="882a5aeb-06d2-42cd-adbe-7021a940b66c">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MM DD YYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9693342503010147743"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="8563358384188392892"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="16155650745313823997"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11983167095826528531"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="6710511349115889082"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="11267506287586041875"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="885b52da-9d78-4f94-bf2a-80f33a7df74c">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll as "MMDDYYYY" - default to .strip.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="9252148090590294357"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="17316512227761017755"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="14758973655679572971"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
        <JSExpression hash="3699159888660112449"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = "" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "";
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="2138274404803856351"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
}]]></JSExpression>
        <JSExpression hash="10291693851902136170"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // This will handle a 2 or 4 digit year.
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp = myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="a208984f-8626-41a0-bbfb-5b508f6d1843">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll to 3 boxes using a
// 2 digit year. There is no default. This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="3653251664612405635"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="3499261995457103119"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="99046c05-afa5-4912-8ba4-38d0586d4d1e">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YYYY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow date of last payroll to 3 boxes using a
// 4 digit year. There is no default. This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4283062321028205089"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="10663170317437849940"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="3d9b56f2-2433-4df4-9659-f84c19c90d36">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow date of last payroll as follows:
//
// Date of Last Payroll displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Payroll date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11886123373676109155"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="9907646192666205614"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="7411825678045339295"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="10426634889401081536"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="8840092099284326981"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="4962378358020569462"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8d9d9413-706b-488b-abf4-186638deb181">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - 2 digit day|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow date of last payroll as follows:
//
// Date of Last Payroll displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a Last Payroll date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="11556867836144123107"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="10806589110056318444"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="13335283774144453617"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="63722117948454030"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="13837158530236401572"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="9172829332283048867"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b14fe7e8-0de2-49a2-9814-beeaa8111d19">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Date Of Last Payroll - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages, we will
// check the NO box and flow date of last payroll as follows:
//
// Date of Last Payroll displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Last Payroll date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7291814722919025283"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="14914426863411853381"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="14915921554128019523"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="8636945648460958921"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="8691267085639974084"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="18272131852250727093"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="479e6dd6-dcdc-4649-a431-dd729523421a">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp|Pred Cont To Report Wages: Date Of Last Payroll]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and provide the last date of employment and date of
// last payroll dates using .strip:
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="16316321084057927443"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c7260149-b2e4-401a-b09c-aeb3beff8b00">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM/DD/YY format|Pred Cont To Report Wages: Date Of Last Payroll - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MM/DD/YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="6181644469887316191"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = myMatches[1] + myMatches[3];
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="635c9728-1e27-4665-b4db-ffe4c63b0908">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YY format|Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MM-DD-YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="17382378682600279739"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", "-");
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b8efb6d3-83cc-428f-83de-89af53be0a52">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM DD YY format|Pred Cont To Report Wages: Date Of Last Payroll - MM DD YY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MM DD YY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="8679802533160103181"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).gsub("/", " ");
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="52cd3c85-4adc-4dfb-bd72-eb47cb4b49e3">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MMDDYY format|Pred Cont To Report Wages: Date Of Last Payroll - MMDDYY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MMDDYY" - default to .strip:
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="8678976336523689354"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_last_date_of_emp.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
    }
    else {
        tmp = equifax.pred_last_date_of_emp.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    if ((myMatches = /^(\d\d\/\d\d\/)(\d\d)(\d\d)$/.exec(equifax.pred_date_of_last_payroll.trim())) != null) {
        tmp = (myMatches[1] + myMatches[3]).delete(/[/]/g);
    }
    else {
        tmp = equifax.pred_date_of_last_payroll.trim();
    }
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8b01bca7-105c-4916-a3ce-3a43a06ac75f">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM-DD-YYYY format|Pred Cont To Report Wages: Date Of Last Payroll - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MM-DD-YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().gsub("/", "-");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().gsub("/", "-");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="4225725102932679679"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().gsub("/", "-");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().gsub("/", "-");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f213934b-844d-48fa-8b00-b861a0844c03">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM DD YYYY format|Pred Cont To Report Wages: Date Of Last Payroll - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MM DD YYYY":
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().gsub("/", " ");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().gsub("/", " ");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="9268456134413333538"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().gsub("/", " ");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().gsub("/", " ");
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2269b0fb-799e-4f78-aab6-1e45fd217620">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MMDDYYYY format|Pred Cont To Report Wages: Date Of Last Payroll - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// Check the 'NO' box and process the last date of employment and date of
// last payroll dates as "MMDDYYYY":
//
// The profile has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().delete(/[/]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().delete(/[/]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JS>
      <JSExpression hash="10177048362620209652"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    tmp = equifax.pred_last_date_of_emp.trim().delete(/[/]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", tmp);
    }
    tmp = equifax.pred_date_of_last_payroll.trim().delete(/[/]/g);
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_3", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7c07b158-a5fc-4f80-b18b-16e5ba224988">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YY|Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment and date of
// last payroll to 3 boxes using a 2 digit year. There is no default. This will handle a 2 or 4 digit year if the profile
// changes. The profile currently has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4666513664851248361"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="3732272835616322544"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f8bdb238-aa5f-428d-8abe-54a9f60bcea8">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - MM|Pred Cont To Report Wages: Last Date Of Emp - DD|Pred Cont To Report Wages: Last Date Of Emp - YYYY|Pred Cont To Report Wages: Date Of Last Payroll - MM|Pred Cont To Report Wages: Date Of Last Payroll - DD|Pred Cont To Report Wages: Date Of Last Payroll - YYYY]]></Description>
      <JS><![CDATA[//
// If predecessor will NOT continue to report wages: Check the NO box; flow last date of employment and date of
// last payroll to 3 boxes using a 4 digit year. There is no default. This will handle a 2 or 4 digit year if the profile
// changes. The profile currently has a MM/DD/YYYY validation.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="4395986885351698510"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="11628767014468241423"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[1]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_6', myMatches[2]);
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5f7b6d5b-dfac-4cc1-950e-c9e8da8f1c94">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year|Pred Cont To Report Wages: Date Of Last Payroll - Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// IF the predecessor is NOT continuing to report wages we will:
//
// Check the 'NO' box and process the last date of employment and date of
// last payroll as follows:
//
// The dates will be displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1 through 9,
// and would have a suffix ['st','nd','rd','th']. The month would be fully
// spelled out. For example, a date of 02/09/1940 would be displayed
// as '9th', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates these dates for MM/DD/YYYY. It is up to
// the user to enter valid date components in their profile. We are
// using 1970 as the year for Time.gm just as a means of easily obtaining
// the month name, and we make sure the month is in the 1..12 range for
// Time.gm to function properly. If they enter an incorrect month they will
// not get the month name.
//
// This code will handle a 2 or 4 digit year.
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8507901670302224947"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="2322339183554440239"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="14946818753915035532"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_6', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="4507236446627028931"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="8624861830487724844"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="6259572289391703749"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
            tmp2 = 'st';
        }
        else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
            tmp2 = 'nd';
        }
        else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', tmp1 + tmp2);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_6', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="5f508b0b-ed20-448e-b221-c561feb8444c">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - 2 digit day|Pred Cont To Report Wages: Last Date Of Emp - alpha month|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year|Pred Cont To Report Wages: Date Of Last Payroll - 2 digit day|Pred Cont To Report Wages: Date Of Last Payroll - alpha month|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// IF the predecessor is NOT continuing to report wages we will:
//
// Check the 'NO' box and process the last date of employment and date of
// last payroll as follows:
//
// The dates will be displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a date of 02/09/1940 would be displayed '09', 'February',
// '1940'. Keep in mind that the form could be field traited upper case.
//
// The profile validates these dates for MM/DD/YYYY. It is up to
// the user to enter valid date components in their profile. We are
// using 1970 as the year for Time.gm just as a means of easily obtaining
// the month name, and we make sure the month is in the 1..12 range for
// Time.gm to function properly. If they enter an incorrect month they will
// not get the month name.
//
// This code will handle a 2 or 4 digit year.
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7031417899032397035"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="5051256603564684230"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="14628778836084283442"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_6', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="16857553447513217091"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="7339257194861840741"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_3", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, "box1_6", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="5809374735205395137"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_3', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', myMatches[2]);
        if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
            SFForms.StorageManager.setValue(formInstanceId, 'box1_6', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_7', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="07db32cc-3cd7-4096-8885-fa232a267771">
      <Description><![CDATA[Pred Cont To Report Wages: NO - Check Box|Pred Cont To Report Wages: Last Date Of Emp - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Last Date Of Emp - 4 digit year|Pred Cont To Report Wages: Date Of Last Payroll - alpha month with a space + Day with alpha suffix|Pred Cont To Report Wages: Date Of Last Payroll - 4 digit year]]></Description>
      <JS><![CDATA[//
// IF the predecessor is NOT continuing to report wages we will:
//
// Check the 'NO' box and process the last date of employment and date of
// last payroll as follows:
//
// The dates will be displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a date of 02/09/1940 would be
// displayed as 'February 9th', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// The profile validates these dates for MM/DD/YYYY. It is up to
// the user to enter valid date components in their profile. We are
// using 1970 as the year for Time.gm just as a means of easily obtaining
// the month name, and we make sure the month is in the 1..12 range for
// Time.gm to function properly. If they enter an incorrect month they will
// not get the month name.
//
// This code will handle a 2 or 4 digit year.
// There is no default for this code.
//
if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="12938724474115123531"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="6450411391632778393"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="6186807136090617111"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/[^0-9]/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="12006699601818944251"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
    }
}]]></JSExpression>
        <JSExpression hash="8214234565591253256"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
        <JSExpression hash="1228089544761637849"><![CDATA[if (!((equifax.pred_will_report_wages_no.trim().isEmpty()))) {
    // Check the 'NO' box for 'Continue to Report Wages':
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', 'X');
    // Last date of employment:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_last_date_of_emp.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
    // Date of last payroll:
    if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_date_of_last_payroll.delete(/\-/g))) != null) {
        tmp1 = myMatches[2].to_i().toString();
        if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
            tmp2 = 'st';
        }
        else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
            tmp2 = 'nd';
        }
        else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
            tmp2 = 'rd';
        }
        else {
            tmp2 = 'th';
        }
        SFForms.StorageManager.setValue(formInstanceId, 'box1_4', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
        SFForms.StorageManager.setValue(formInstanceId, 'box1_5', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
    }
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2cc5b1d4-9fec-425b-af55-d9d2f91544cc">
      <Description><![CDATA[Pred Parent: Parent Name]]></Description>
      <JS><![CDATA[tmp = equifax.pred_parent_company_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5398122886347869853"><![CDATA[tmp = equifax.pred_parent_company_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1ba5b4ae-d1c5-4f84-93d5-5e0ad74c2ab2">
      <Description><![CDATA[Pred Parent: FEIN]]></Description>
      <JS><![CDATA[tmp = equifax.pred_parent_company_fein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13950424613886327926"><![CDATA[tmp = equifax.pred_parent_company_fein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="88970b47-d19a-416d-a43e-7d4d3664a498">
      <Description><![CDATA[Pred Parent: FEIN - 9 digits only]]></Description>
      <JS><![CDATA[tmp = equifax.pred_parent_company_fein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="7232635907757887498"><![CDATA[tmp = equifax.pred_parent_company_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14005332127336584056"><![CDATA[tmp = equifax.pred_parent_company_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="08384b2d-610f-4c83-b455-149584c4bbb8">
      <Description><![CDATA[Pred Parent: FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[tmp = equifax.pred_parent_company_fein.trim().replace('-', ' ');
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6841560979865887639"><![CDATA[tmp = equifax.pred_parent_company_fein.trim().replace('-', ' ');]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="804ff242-0dae-4670-82db-c02ece609260">
      <Description><![CDATA[Pred Parent: FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
tmp = equifax.pred_parent_company_fein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="7232635907757887498"><![CDATA[tmp = equifax.pred_parent_company_fein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="14005332127336584056"><![CDATA[tmp = equifax.pred_parent_company_fein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8a3a33c9-1865-4f82-8e0a-a8208739959b">
      <Description><![CDATA[Pred Parent: FEIN - First 2 digits|Pred Parent: FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_parent_company_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="66835062133170014"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_parent_company_fein.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
        <JSExpression hash="8346693366070938213"><![CDATA[if ((myMatches = /^(\d{2})(\d{7})$/.exec(equifax.pred_parent_company_fein.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="6ddfc427-ffd5-40cc-9445-222af0c20367">
      <Description><![CDATA[Pred Officer: Name]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_name.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="15481028012542835964"><![CDATA[tmp = equifax.pred_officer_name.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="795633c0-e536-4185-94bb-4968c7a07627">
      <Description><![CDATA[Pred Officer: Title]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_title.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="17928633997506635062"><![CDATA[tmp = equifax.pred_officer_title.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b6c4d50d-9dd3-4a1a-ad13-c2c8284c6404">
      <Description><![CDATA[Pred Officer: Name + Title]]></Description>
      <JS><![CDATA[tmp = ("" + (equifax.pred_officer#_name) + " " + (equifax.pred_officer#_title) + "").squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="6258811473275445712"><![CDATA[tmp = ("" + (equifax.pred_officer_name) + " " + (equifax.pred_officer_title) + "").squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="5492927054770557029"><![CDATA[tmp = (equifax.pred_officer_name + " " + equifax.pred_officer_title).squeeze(' ').toString().trim();]]></JSExpression>
        <JSExpression hash="14336452212456306886"><![CDATA[tmp = (equifax.pred_officer_name + ' ' + equifax.pred_officer_title).squeeze(' ').toString().trim();]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0904475c-b77a-4c4b-8e40-d5c502972963">
      <Description><![CDATA[Pred Officer: SSN]]></Description>
      <JS><![CDATA[//
// Form wants a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="26337202-a208-425a-be3a-3eb4e692ef7a">
      <Description><![CDATA[Pred Officer: SSN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants a SSN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="19146ddb-f185-4fe3-a01b-97748ea2f269">
      <Description><![CDATA[Pred Officer: SSN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// Form wants a SSN [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="6002776088668890657"><![CDATA[myReg = /^([0-9]{3}-[0-9]{2}-[0-9]{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3fde8ebe-d2b8-4e96-bb3d-bb141a3a6e26">
      <Description><![CDATA[Pred Officer: SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of a SSN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^\d{3}-\d\d-(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="18318445402606293553"><![CDATA[myReg = /^\d{3}-\d\d-(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b98f5b8c-3004-41a4-90db-bfd58c3108c7">
      <Description><![CDATA[Pred Officer: SSN - First 3 digits|Pred Officer: SSN - Next 2 digits|Pred Officer: SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// SSN broken into three boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is a SSN before we can dataflow it.
//
if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.pred_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="4592519331703901206"><![CDATA[if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.pred_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="dd8949a0-7e10-4d92-882b-543180661d2e">
      <Description><![CDATA[Pred Officer: FEIN]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="79726d5b-49eb-414c-b8dd-83e69a3d035f">
      <Description><![CDATA[Pred Officer: FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f5190832-00fc-4861-9042-a7de5d763c23">
      <Description><![CDATA[Pred Officer: FEIN - Space instead of a hyphen]]></Description>
      <JS><![CDATA[//
// Form wants an FEIN [99 9999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^([0-9]{2}-[0-9]{7})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="17939641808215397571"><![CDATA[myReg = /^([0-9]{2}-[0-9]{7})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="3327344423551032095"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="df39c8b6-03db-4296-8b30-6009bf2c5da1">
      <Description><![CDATA[Pred Officer: FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// The last 4 digits of an FEIN:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
myReg = /^\d\d-\d{3}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="9922658390315729580"><![CDATA[myReg = /^\d\d-\d{3}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bcf6def5-9e31-4d31-9ba7-b3f9281e0832">
      <Description><![CDATA[Pred Officer: FEIN - First 2 digits|Pred Officer: FEIN - Next 7 digits]]></Description>
      <JS><![CDATA[//
// FEIN broken into two boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN], so
// we need to ensure that this is an FEIN before we can dataflow it.
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.pred_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}
myMatches = null;]]></JS>
      <JSExpression hash="3230832892650795651"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.pred_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f3b39a88-e394-4939-936a-4a048e5c6b51">
      <Description><![CDATA[Pred Officer: SSN or an FEIN]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip the value and give it to them as either an FEIN or a SSN is acceptable.
//
tmp = equifax.pred_officer#_ssn_ein.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="6594429461181654858"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bd946577-d267-4db5-ab85-5ef5a60342cb">
      <Description><![CDATA[Pred Officer: SSN or an FEIN - 9 digits only]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box - [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give it to them, as either an FEIN or
// a SSN expressed as 9 digits is acceptable.
//
tmp = equifax.pred_officer#_ssn_ein.delete(/[^0-9]/g);
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression>
        <JSExpression hash="13837349377972805165"><![CDATA[tmp = equifax.pred_officer_ssn_ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="12360042530698125610"><![CDATA[tmp = equifax.pred_officer_ssn_ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="66978547-51b4-474a-a3fc-013bc3a98e5d">
      <Description><![CDATA[Pred Officer: SSN or an FEIN - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// Form wants a SSN or an FEIN - displayed in 1 box with hyphen(s) replaced by a space char -
// [FEIN: 99 9999999; SSN: 999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just .strip and substitute a space char for the hyphens.
//
tmp = equifax.pred_officer#_ssn_ein.trim().gsub("-", " ");
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="417031944529317857"><![CDATA[tmp = equifax.pred_officer_ssn_ein.trim().gsub("-", " ");]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="72dc9f4d-71bf-4da8-b3f7-546bfc01db1f">
      <Description><![CDATA[Pred Officer: SSN or an FEIN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Form wants the last 4 digits of a SSN or an FEIN - displayed in 1 box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We will just delete everything except the digits 0-9 and give them the last 4 digits if we
// have 9 digits to work with after the deletion.
//
tmp = equifax.pred_officer#_ssn_ein.delete(/[^0-9]/g);
myReg = /^\d{5}(\d{4})$/;
myMatches = myReg.exec(tmp);
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="13837349377972805165"><![CDATA[tmp = equifax.pred_officer_ssn_ein.delete(/[^0-9]/g);]]></JSExpression>
        <JSExpression hash="12360042530698125610"><![CDATA[tmp = equifax.pred_officer_ssn_ein.delete(/\-/g);]]></JSExpression>
      </JSExpression>
      <JSExpression hash="8232133284427401073"><![CDATA[myReg = /^\d{5}(\d{4})$/;]]></JSExpression>
      <JSExpression hash="7319872962796957683"><![CDATA[myMatches = myReg.exec(tmp);]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc228beb-929f-45a5-9629-d94219f7e42a">
      <Description><![CDATA[Pred Officer: FEIN - Check Box|Pred Officer: SSN - Check Box|Pred Officer: FEIN else SSN]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN, but there are separate check boxes to indicate
// which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// So we need to make sure we check the proper box by looking at the pattern in the profile field.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="17132577872874308953"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fd51f1f7-bdfd-4227-aab2-2adcff328f03">
      <Description><![CDATA[Pred Officer: FEIN - Check Box|Pred Officer: SSN - Check Box|Pred Officer: FEIN else SSN - 9 digits only]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN else a SSN [999999999], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we delete the hyphen(s). to get the 9 digit value.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression hash="17132577872874308953"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression>
        <JSExpression hash="764095909675980086"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="10624567805724831754"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="933608a2-6202-4271-9a83-9f1072408888">
      <Description><![CDATA[Pred Officer: FEIN - Check Box|Pred Officer: SSN - Check Box|Pred Officer: FEIN else SSN - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN [99 9999999] or a SSN [999 99 9999], but there are separate
// check boxes to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we replace the hyphen(s) with a space char.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="17132577872874308953"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="4021121599899255010"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a10462e6-9fd0-4441-b20a-8621b04630b3">
      <Description><![CDATA[Pred Officer: FEIN - Check Box|Pred Officer: SSN - Check Box|Pred Officer: FEIN else SSN - Last 4 digits]]></Description>
      <JS><![CDATA[//
// One box displays either an FEIN or a SSN [last 4 digits], but there are separate check boxes
// to indicate which is being used:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we check the proper box by looking at the pattern in the profile field,
// then we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}
if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="13632807025780201366"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", 'X');
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", 'X');
}]]></JSExpression>
      <JSExpression hash="17788759382764399689"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7c193057-cde4-437f-83bd-24043a2ecd53">
      <Description><![CDATA[Pred Officer: FEIN|Pred Officer: SSN [If no FEIN]]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="18324326029009087250"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="270488b3-ee8d-42d5-84ed-ec54fef37046">
      <Description><![CDATA[Pred Officer: FEIN - 9 digits only|Pred Officer: SSN - 9 digits only [If no FEIN]]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box [999999999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we delete the hyphens.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/\-/g));
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="1202063604293197847"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/\-/g));
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/\-/g));
}]]></JSExpression>
        <JSExpression hash="11054262363443832721"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].delete(/[^0-9]/g));
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].delete(/[^0-9]/g));
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="107a76bc-7166-43bb-a758-df790134027e">
      <Description><![CDATA[Pred Officer: FEIN - Space instead of hyphen|Pred Officer: SSN [If no FEIN] - Spaces instead of hyphens]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box [99 9999999] else SSN in another box [999 99 9999]:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we replace the hyphens with a space char.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].gsub("-", " "));
}
myMatches = null;]]></JS>
      <JSExpression hash="16553684525487805523"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{2}-[0-9]{7})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1].replace("-", " "));
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^([0-9]{3}-[0-9]{2}-[0-9]{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1].gsub("-", " "));
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1608dbcd-6fbd-4fa7-b9bb-e6cbdedf3907">
      <Description><![CDATA[Pred Officer: FEIN - Last 4 digits|Pred Officer: SSN [If no FEIN] - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Separate boxes: FEIN in 1 box else SSN in another box - last 4 digits:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the value to the proper box by first looking at the pattern in the
// profile field, then we give them the last 4 digits in the pattern.
//
//
// FEIN:
//
if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.pred_officer#_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}
myMatches = null;]]></JS>
      <JSExpression hash="1466073797858333504"><![CDATA[if (equifax.pred_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^\d\d-\d{3}(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
}
else if (equifax.pred_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/)) {
    myMatches = equifax.pred_officer_ssn_ein.trim().toString().match(/^\d{3}-\d\d-(\d{4})$/);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[1]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="fc96688d-dc98-4007-b78e-f666ae830e08">
      <Description><![CDATA[Pred Officer: FEIN - First 2 digits|Pred Officer: FEIN - Last 7 digits|Pred Officer: SSN [If no FEIN] - First 3 digits|Pred Officer: SSN [If no FEIN] - Next 2 digits|Pred Officer: SSN [If no FEIN] - Last 4 digits]]></Description>
      <JS><![CDATA[//
// Separate boxes - FEIN broken into two boxes else SSN broken into 3 boxes:
//
// This profile element can hold an FEIN [profile validates this as 99-9999999 when it is an
// FEIN] and can also hold a SSN [profile validates this as 999-99-9999 when it is a SSN].
// We need to make sure we set the values to the proper boxes by first looking at the pattern in the
// profile field, then we give them the breakout accordingly [breaking on the hyphens].
//
//
// FEIN:
//
if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.pred_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.pred_officer#_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}
myMatches = null;]]></JS>
      <JSExpression hash="10901732261141051346"><![CDATA[if ((myMatches = /^(\d{2})-(\d{7})$/.exec(equifax.pred_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    //
    // SSN:
    //
}
else if ((myMatches = /^(\d{3})-(\d\d)-(\d{4})$/.exec(equifax.pred_officer_ssn_ein.trim())) != null) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_3", myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_4", myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, "box1_5", myMatches[3]);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="d8249cb7-85ff-4d86-97f7-7a3a9b24a3c8">
      <Description><![CDATA[Pred Officer - Addr: Street Address]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_address.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="7429214369110100986"><![CDATA[tmp = equifax.pred_officer_address.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="58140a92-1f59-4b96-bded-ca1594092d8e">
      <Description><![CDATA[Pred Officer - Addr: Street Address + City + State]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_officer#_address + ' ' + (equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8711372858137703660"><![CDATA[tmp = (equifax.pred_officer_address + ' ' + (equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="74740056-377f-4cd8-bba5-ac6a816efcb3">
      <Description><![CDATA[Pred Officer - Addr: Street Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_officer#_address + ' ' + (equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state + ' ' + equifax.pred_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="18070471398857466897"><![CDATA[tmp = (equifax.pred_officer_address + ' ' + (equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state + ' ' + equifax.pred_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b0a97d07-8791-4ece-ae7e-6c2eeb3f29b3">
      <Description><![CDATA[Pred Officer - Addr: City]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_city.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="3920735715317859917"><![CDATA[tmp = equifax.pred_officer_city.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="05460d8e-e900-4e1b-913f-c3bd1c6cf678">
      <Description><![CDATA[Pred Officer - Addr: City + State]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12803664557720103796"><![CDATA[tmp = ((equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1f7f90df-cc20-4219-927e-10e22efcf9d3">
      <Description><![CDATA[Pred Officer - Addr: City + State + Zip]]></Description>
      <JS><![CDATA[tmp = ((equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state + ' ' + equifax.pred_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="13738977406751866529"><![CDATA[tmp = ((equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state + ' ' + equifax.pred_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a7e15b76-8cc9-4627-a31c-cf92475550b8">
      <Description><![CDATA[Pred Officer - Addr: State]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_state.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16012643351936224215"><![CDATA[tmp = equifax.pred_officer_state.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b96d0f0f-9cc6-4a2a-bde2-2b7a1340a0f2">
      <Description><![CDATA[Pred Officer - Addr: State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_officer#_state + ' ' + equifax.pred_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10646752155499112188"><![CDATA[tmp = (equifax.pred_officer_state + ' ' + equifax.pred_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="f72f3119-9bf8-492c-863e-d4090e923507">
      <Description><![CDATA[Pred Officer - Addr: Zip Code]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_zip.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="16282646113184666133"><![CDATA[tmp = equifax.pred_officer_zip.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="364f30c8-f265-422c-bb7b-aaed5e084994">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits]]></Description>
      <JS><![CDATA[//
// 5 digit zip code - 99999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12229998608498974624"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="3d03a54f-8817-4321-a38f-86d225f6e967">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 9 digits, no hyphens]]></Description>
      <JS><![CDATA[//
// 9 digit zip code - 999999999 - defaults to .strip.
//
myReg = /^(\d{9})$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="9514606113391014762"><![CDATA[myReg = /^(\d{9})$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12229998608498974624"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b26f6b1-58e1-4a77-8f7c-921c39745798">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits with a space and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit zip code with a space char - 99999 9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="17904449518574054999"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="12927538573646388053"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2]);
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="2350159321704526483"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2]);
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="13548ed5-6c73-4dfb-ae34-bcf73c405ce0">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits with a hyphen and 4 digits]]></Description>
      <JS><![CDATA[//
// 9 digit hyphenated zip code - 99999-9999 - defaults to .strip.
//
myReg = /^(\d{5})(\d{4})$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3141995708204112509"><![CDATA[myReg = /^(\d{5})(\d{4})$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="10069479198941157417"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "");
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="13455498262345739237"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2]);
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="8594517701037079887"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2]);
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="5d2664d3-8342-4598-8812-119a588f6b5c">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits or Zip Code 9 digits]]></Description>
      <JS><![CDATA[//
// 5 or 9 digit zip code - 99999 or 999999999 - defaults to .strip.
//
myReg = /^(\d{5}(\d{4})?)$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3914013381657740121"><![CDATA[myReg = /^(\d{5}(\d{4})?)$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression hash="12229998608498974624"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1];
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7f509626-b5d6-438e-aeb9-3634b67ce91c">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits or Zip Code 9 digits with a hyphen]]></Description>
      <JS><![CDATA[//
// 5 digit or hyphenated 9 digit zip code - 99999 or 99999-9999 - defaults to .strip.
//
myReg = /^([0-9]{5})([0-9]{4})?$/;
myMatches = myReg.exec(equifax.pred_officer#_zip.delete(/\-|\s/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_officer#_zip.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="2165280163454211144"><![CDATA[myReg = /^([0-9]{5})([0-9]{4})?$/;]]></JSExpression>
      <JSExpression hash="9669407501291303972"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_zip.delete(/\-|\s/g));]]></JSExpression>
      <JSExpression>
        <JSExpression hash="9598548675793645305"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + (myMatches[2]) + "") : "");
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="18379690340570525629"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ("-" + myMatches[2]) : "");
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
        <JSExpression hash="5166267513831669524"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = myMatches[1] + (myMatches[2] ? ('-' + myMatches[2]) : '');
}
else {
    tmp = equifax.pred_officer_zip.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="8741536f-b1b7-4dbd-a7b4-7b81a157d791">
      <Description><![CDATA[Pred Officer - Addr: Zip Code 5 digits|Pred Officer - Addr: Zip Code 4 digit extension]]></Description>
      <JS><![CDATA[//
// Two boxes for zip, use them if 5 or 9 digit zip, else, do the raw zip in the first box.
//
if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_officer#_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_officer#_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}
myMatches = null;]]></JS>
      <JSExpression hash="10760052599867239440"><![CDATA[if ((myMatches = /^([0-9]{5})([0-9]{4})?$/.exec(equifax.pred_officer_zip.delete(/\-|\s/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    if (myMatches[2]) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", myMatches[2]);
    }
}
else {
    tmp = equifax.pred_officer_zip.trim();
    if (!tmp.trim().isEmpty()) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
    }
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="04703317-2856-4f73-a660-9ee3203ffbf9">
      <Description><![CDATA[Pred Officer Name + Addr: Name + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_officer#_name + ' ' + equifax.pred_officer#_address + ' ' + (equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state + ' ' + equifax.pred_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11308627258601346517"><![CDATA[tmp = (equifax.pred_officer_name + ' ' + equifax.pred_officer_address + ' ' + (equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state + ' ' + equifax.pred_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1070fee3-e528-47df-bcac-044e9963a759">
      <Description><![CDATA[Pred Officer Name + Title + Addr: Name + Title + Address + City + State + Zip]]></Description>
      <JS><![CDATA[tmp = (equifax.pred_officer#_name + ' ' + equifax.pred_officer#_title + ' ' + equifax.pred_officer#_address + ' ' + (equifax.pred_officer#_city.trim().isEmpty() ? '' : equifax.pred_officer#_city + ', ') + equifax.pred_officer#_state + ' ' + equifax.pred_officer#_zip).squeeze(' ').toString().trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="12708311017998214716"><![CDATA[tmp = (equifax.pred_officer_name + ' ' + equifax.pred_officer_title + ' ' + equifax.pred_officer_address + ' ' + (equifax.pred_officer_city.trim().isEmpty() ? '' : equifax.pred_officer_city + ', ') + equifax.pred_officer_state + ' ' + equifax.pred_officer_zip).squeeze(' ').toString().trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b4d89f8f-3dd8-4c6e-86f7-e1afdcdca596">
      <Description><![CDATA[Pred Officer: DOB]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_dob.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8984627241377029873"><![CDATA[tmp = equifax.pred_officer_dob.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1e92ea43-5c8f-415b-aa36-376ba3f34c2a">
      <Description><![CDATA[Pred Officer: DOB - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14270007033509358600"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="373723171586003335"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="7630197459904671772"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2d89e42c-7138-43e0-808a-21b9365f32d1">
      <Description><![CDATA[Pred Officer: DOB - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16782903596692948037"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="8661051534948375498"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="12264498475213596918"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0cbba066-bd3b-4a9b-98f3-1b90c7170fd1">
      <Description><![CDATA[Pred Officer: DOB - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="5203393720337793856"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="3234195331505796420"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="6388011475237125235"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="33a367f0-1ac8-4f5e-bc42-2a9cb3d00c1d">
      <Description><![CDATA[Pred Officer: DOB - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9801626770027681856"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="14559147065263874177"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="92e2d42d-49f4-40b7-9166-051321d3fdc3">
      <Description><![CDATA[Pred Officer: DOB - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="16388131709867966411"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="3563368342449302681"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="557039317810500823"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="2c5eae8b-d75d-4eb4-b76c-d96a4cf633ab">
      <Description><![CDATA[Pred Officer: DOB - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="6186623356438886823"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="10200369728921439572"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="3983522469230119599"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6cbff1d5-1776-4634-b84c-8ba16f927bde">
      <Description><![CDATA[Pred Officer: DOB - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="9512175852310228350"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="11238821880082345371"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="11351525757382162535"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="0a51f301-4991-40aa-8b0b-59a9702d296f">
      <Description><![CDATA[Pred Officer: DOB - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer DOB as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer#_dob.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="4245126959392030079"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="7478067814142869621"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_dob.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="11830460119406152047"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="16117344737261069137"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
        <JSExpression hash="7149084389456732830"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + (myMatches[2] ? myMatches[2] : myMatches[3].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[3]);
}
else {
    tmp = equifax.pred_officer_dob.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="b2821f49-c8ec-472c-bd50-9ba65335312e">
      <Description><![CDATA[Pred Officer: DOB - MM|Pred Officer: DOB - DD|Pred Officer: DOB - YY]]></Description>
      <JS><![CDATA[//
// Display Officer DOB in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="10950513726057544610"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17667618509651063053"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="76079504-ea24-473e-ac5d-da5abe781c64">
      <Description><![CDATA[Pred Officer: DOB - MM|Pred Officer: DOB - DD|Pred Officer: DOB - YYYY]]></Description>
      <JS><![CDATA[//
// Display Officer DOB in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="8159303491849104624"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="10373270897298156166"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="2ce5a5bc-28dc-44b7-b665-196faec487c3">
      <Description><![CDATA[Pred Officer: DOB - Day with alpha suffix|Pred Officer: DOB - alpha month|Pred Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6493787574699714295"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3468008337000920940"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13187283265673785467"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16210143639871602017"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3500922281242118017"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2688499849625713805"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="c6fad0eb-0b36-410f-aa95-fe7717fb09d5">
      <Description><![CDATA[Pred Officer: DOB - 2 digit day|Pred Officer: DOB - alpha month|Pred Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a birth date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2031831795922660922"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="18261297287096226606"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="8330471720819791659"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="17665681965919360875"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="9408276070179198803"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="2319663048056000987"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="d33f0d37-6ec7-42bd-a954-7dbe58b9153e">
      <Description><![CDATA[Pred Officer: DOB - alpha month with a space + Day with alpha suffix|Pred Officer: DOB - 4 digit year]]></Description>
      <JS><![CDATA[//
// DOB displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a birth date of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="18139439083210934254"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="14055981687671913344"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="11450770555108260870"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="9546292767417968274"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="15430622260823524035"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16852679646248734620"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_dob.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="14c03ee8-8a44-4a03-8048-95057923cecb">
      <Description><![CDATA[Pred Officer: Date of Appt]]></Description>
      <JS><![CDATA[tmp = equifax.pred_officer#_date_of_appt.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10790834175876449924"><![CDATA[tmp = equifax.pred_officer_date_of_appt.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9008ae19-1443-4607-9f60-d81ab8eb333e">
      <Description><![CDATA[Pred Officer: Date of Appt - MM/DD/YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM/DD/YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="2708798044524604108"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="18386459871303194291"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11321847482761818758"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="9c113433-5b23-46a2-9264-03f510640ec2">
      <Description><![CDATA[Pred Officer: Date of Appt - MM-DD-YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM-DD-YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14302305888084606439"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="3303448198180669748"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="15547579191166912974"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="51b952cd-496a-453b-9246-2111e30de9a8">
      <Description><![CDATA[Pred Officer: Date of Appt - MM DD YY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM DD YY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="1948302782735104230"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11641933943541566796"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="7576875710177870285"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e2d52bf1-eb50-434a-b2b0-492ce876312c">
      <Description><![CDATA[Pred Officer: Date of Appt - MMDDYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MMDDYY" - default to .strip:
//
myReg = /^(\d{4})(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="3302052079319612875"><![CDATA[myReg = /^(\d{4})(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="13115403638568174958"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[3]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="13510314199417452474"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[3]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="a21791d7-e72b-4c63-93e2-49e8232415c5">
      <Description><![CDATA[Pred Officer: Date of Appt - MM/DD/YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM/DD/YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="8230722005882264024"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "/" + (myMatches[2]) + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="2768755320775423236"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "/" + myMatches[2] + "/" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="16243232329430836148"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '/' + myMatches[2] + '/' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="c195d50a-4fdb-4654-8dd9-c947a0ed75a8">
      <Description><![CDATA[Pred Officer: Date of Appt - MM-DD-YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM-DD-YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="17517329767151442221"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "-" + (myMatches[2]) + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11382086297455136291"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + "-" + myMatches[2] + "-" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="11658345858221244101"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + '-' + myMatches[2] + '-' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="522d1a87-c745-4cb7-b997-df1b79c5dede">
      <Description><![CDATA[Pred Officer: Date of Appt - MM DD YYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MM DD YYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="10468766628925059224"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + " " + (myMatches[2]) + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="8915584897393752388"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + " " + myMatches[2] + " " + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="10853374730375368678"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + ' ' + myMatches[2] + ' ' + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="276ad440-8b00-4e12-a4d7-e6920a47ed61">
      <Description><![CDATA[Pred Officer: Date of Appt - MMDDYYYY format]]></Description>
      <JS><![CDATA[//
// This will handle a 2 or 4 digit year.
//
// Display Officer Date of Appt as "MMDDYYYY" - default to .strip:
//
myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;
myMatches = myReg.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g));
if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer#_date_of_appt.trim();
}
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}
myMatches = null;]]></JS>
      <JSExpression hash="8779567711984942267"><![CDATA[myReg = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/;]]></JSExpression>
      <JSExpression>
        <JSExpression hash="6310169928366155404"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g));]]></JSExpression>
        <JSExpression hash="15034110174233209693"><![CDATA[myMatches = myReg.exec(equifax.pred_officer_date_of_appt.delete(/\-/g));]]></JSExpression>
      </JSExpression>
      <JSExpression>
        <JSExpression hash="14379664211861828385"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = ("" + (myMatches[1]) + "" + (myMatches[2]) + "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="16313007649524816901"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
        <JSExpression hash="15335130199259648231"><![CDATA[if (myMatches != null && myMatches.length > 0) {
    tmp = (myMatches[1] + myMatches[2] + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}
else {
    tmp = equifax.pred_officer_date_of_appt.trim();
}]]></JSExpression>
      </JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="64eb7d92-42ab-4c67-a8cf-ce38c3a18625">
      <Description><![CDATA[Pred Officer: Date of Appt - MM|Pred Officer: Date of Appt - DD|Pred Officer: Date of Appt - YY]]></Description>
      <JS><![CDATA[//
// Display Officer Date of Appointment in 3 boxes using a 2 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="163400893839488246"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12301781897111724612"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="1711700e-672c-4e78-990b-1a899d921920">
      <Description><![CDATA[Pred Officer: Date of Appt - MM|Pred Officer: Date of Appt - DD|Pred Officer: Date of Appt - YYYY]]></Description>
      <JS><![CDATA[//
// Display Officer Date of Appointment in 3 boxes using a 4 digit year. There is no default.
// This will handle a 2 or 4 digit year if the profile changes. The profile currently
// has a MM/DD/YYYY validation.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="6011695097601457675"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16790387966937387990"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[1]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', myMatches[2]);
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? '19' : '20') + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="b66f4424-91bc-4727-92b6-b6d3952f2c27">
      <Description><![CDATA[Pred Officer: Date of Appt - Day with alpha suffix|Pred Officer: Date of Appt - alpha month|Pred Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Appt. of 02/09/1940
// would be displayed as '9th', 'February', '1940'. Keep in mind that
// the form could be field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2845610329812417904"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="7992216844356856844"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="1840324044820997727"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16448459762059482020"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="6786556280702445808"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="5335913333879211989"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if ((myMatches[2].to_i()) == 1 || (myMatches[2].to_i()) == 21 || (myMatches[2].to_i()) == 31) {
        tmp2 = 'st';
    }
    else if ((myMatches[2].to_i()) == 2 || (myMatches[2].to_i()) == 22) {
        tmp2 = 'nd';
    }
    else if ((myMatches[2].to_i()) == 3 || (myMatches[2].to_i()) == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', tmp1 + tmp2);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="96e61bca-25a6-4f9d-b1b7-36a308430a6c">
      <Description><![CDATA[Pred Officer: Date of Appt - 2 digit day|Pred Officer: Date of Appt - alpha month|Pred Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 3 boxes as follows: DD, Month Name,
// YYYY - where the day would be two digits and have a leading zero
// for days 1 through 9 with no suffix. The month would be fully spelled
// out. For example, a birth date of 02/09/1940 would be displayed
// as '09', 'February', '1940'. Keep in mind that the form could be
// field traited upper case.
//
// This will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="2914539002277445562"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="3836102655436033091"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="11029114169868263832"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="12734585996202666776"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="12250711134240015008"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, "box1_2", SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B"));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6046622729981811229"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', myMatches[2]);
    if (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12))) {
        SFForms.StorageManager.setValue(formInstanceId, 'box1_2', SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B'));
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_3', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="8cd09400-7568-47c7-8633-e2a3d3e0ca2f">
      <Description><![CDATA[Pred Officer: Date of Appt - alpha month with a space + Day with alpha suffix|Pred Officer: Date of Appt - 4 digit year]]></Description>
      <JS><![CDATA[//
// Date of Appointment. displayed in 2 boxes as follows: 'Month Name DD',
// 'YYYY' - where the day would not have a leading zero for days 1
// through 9, and would have a suffix ['st','nd','rd','th']. The month
// would be fully spelled out. For example, a Date of Appt. of 02/09/1940
// would be displayed as 'February 9th', '1940'. Keep in mind that the
// form could be field traited upper case.
//
// This code will handle a 2 or 4 digit year.
//
// It is up to the user to enter valid date components in their profile.
// We are using 1970 as the year for Time.gm just as a means of
// easily obtaining the month name, and we make sure the month is in
// the 1..12 range for Time.gm to function properly. If they enter an
// incorrect month they will not get the month name.
//
// There is no default for this code.
//
if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer#_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}
myMatches = null;]]></JS>
      <JSExpression>
        <JSExpression hash="5908955759505729072"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="7493377193989954182"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="16349866591880351864"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/[^0-9]/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="13558016246786613473"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + (tmp1 + tmp2) + ""));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', "" + (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + "" + (myMatches[4]) + "");
}]]></JSExpression>
        <JSExpression hash="13973842465979914591"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime("%B") : "") + " " + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime("%y").to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
        <JSExpression hash="6517652125442155481"><![CDATA[if ((myMatches = /^(\d\d)(\d\d)(\d\d)?(\d\d)$/.exec(equifax.pred_officer_date_of_appt.delete(/\-/g))) != null) {
    tmp1 = myMatches[2].to_i().toString();
    if (myMatches[2].to_i() == 1 || myMatches[2].to_i() == 21 || myMatches[2].to_i() == 31) {
        tmp2 = 'st';
    }
    else if (myMatches[2].to_i() == 2 || myMatches[2].to_i() == 22) {
        tmp2 = 'nd';
    }
    else if (myMatches[2].to_i() == 3 || myMatches[2].to_i() == 23) {
        tmp2 = 'rd';
    }
    else {
        tmp2 = 'th';
    }
    SFForms.StorageManager.setValue(formInstanceId, 'box1_1', (((myMatches[1].to_i() >= 1 && myMatches[1].to_i() <= 12) ? SFForms.Utilities.Time.gm(1970, myMatches[1]).strftime('%B') : '') + ' ' + tmp1 + tmp2));
    SFForms.StorageManager.setValue(formInstanceId, 'box1_2', (myMatches[3] ? myMatches[3] : myMatches[4].to_i() > SFForms.Utilities.Time.now.strftime('%y').to_i() ? 19 : 20) + myMatches[4]);
}]]></JSExpression>
      </JSExpression>
    </JSBlock>
    <JSBlock id="f7aaf5a8-095e-40d9-b0b5-65ac384eaea1">
      <Description><![CDATA[State List [##] Acct Numbers: Pred Unemployment]]></Description>
      <JS><![CDATA[tmp = equifax.##_pred_unemp_acct_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="5402003451553683475"><![CDATA[tmp = equifax._pred_unemp_acct_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="7f06b85e-8091-44ac-969e-d396197ef4ca">
      <Description><![CDATA[State List [##] Acct Numbers: Succ Unemployment]]></Description>
      <JS><![CDATA[tmp = equifax.##_succ_unemp_acct_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11699104773796491832"><![CDATA[tmp = equifax._succ_unemp_acct_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="be54901e-0b68-4e30-af14-d5e16de21f2c">
      <Description><![CDATA[State List [##] Acct Numbers: Pred Withholding]]></Description>
      <JS><![CDATA[tmp = equifax.##_pred_wh_acct_number.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="8091497890849949668"><![CDATA[tmp = equifax._pred_wh_acct_number.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="4b3de120-992e-4868-a83f-ebdf6a7c2f98">
      <Description><![CDATA[State List [##] Location Address]]></Description>
      <JS><![CDATA[tmp = equifax.##_address1.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="475563335331817381"><![CDATA[tmp = equifax._address1.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="6dd6b356-8f57-49d1-9736-32b225dc9378">
      <Description><![CDATA[State List [##] Num of Emp: Transferred to Succ Employer]]></Description>
      <JS><![CDATA[tmp = equifax.##_number_emp_transferred.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="10540928251872614885"><![CDATA[tmp = equifax._number_emp_transferred.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="bc364f87-f28e-497b-824e-d0cb84b7fe90">
      <Description><![CDATA[State List [##] Num of Emp: Retained by Pred Employer ]]></Description>
      <JS><![CDATA[tmp = equifax.##_number_emp_retained.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="2294060452562801617"><![CDATA[tmp = equifax._number_emp_retained.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="1fe40b0b-fc60-47ee-b0e5-09b3c0f4655e">
      <Description><![CDATA[State List [##] With Tax: Est Monthly Wages for Succ]]></Description>
      <JS><![CDATA[tmp = equifax.##_est_mo_wages.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="11399075608209735173"><![CDATA[tmp = equifax._est_mo_wages.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
    <JSBlock id="e08374f8-349d-4f8e-8cce-11f679367cb5">
      <Description><![CDATA[State List [##] With Tax: Est State]]></Description>
      <JS><![CDATA[tmp = equifax.##_est_state_wh_tax.trim();
if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JS>
      <JSExpression hash="4393154439777595118"><![CDATA[tmp = equifax._est_state_wh_tax.trim();]]></JSExpression>
      <JSExpression hash="4277661738418320548"><![CDATA[if (!tmp.trim().isEmpty()) {
    SFForms.StorageManager.setValue(formInstanceId, "box1_1", tmp);
}]]></JSExpression>
    </JSBlock>
  </Profile>
</JavaScriptCodeBlocks>