Well what does everyone think of the Pages upgrade today?

Impressed?

I do have an iPad 3 & an iPhone 4S, both with retina displays, but I honestly can't say I see that much difference from my previous original iPad & iPhone 3GS. Text is a bit clearer, but that's all my old eyes can tell.

Similar Messages

  • What does everyone think of the Iphone 4s overall?

    I am up for an upgrade for a new phone and I was thinking about getting the new iphone 4 but I wanna see what everyone thinks of it first and see just how many bugs it has. So I will know if its ok to get now or if I should wait for them to work the bugs out first.

    Yeah, already tested all modes. No problems whatsoever.

  • What does everyone think of the new driv

    Hey guys Unstable here,
    What is your experience with the newest Xfi drivers? Sound quality, buggs, performance?
    The new driver doesn't detect my card at all. But the older drivers did. WTF creative get your head in the game!
    x fi xtreme music
    asus A8N sli deluxe
    7800gtx
    amd x2 4400+
    plenty of HD space
    2gigs ddr400 GEIL
    Message Edited by Unstable_Hero on 09-22-2006 0:5 PMMessage Edited by Unstable_Hero on 09-22-2006 0:56 PM

    Yeah, already tested all modes. No problems whatsoever.

  • What does it mean when the Page in Dreamweaver has a blue background?

    Good Day.  I am having a problem with one of my pages, and I'm not sure what the issue is.  Currently the only thing I can see different about it, is that when I load it into Dreamweaver, each section has a light blue background as though it was selected for something or has a special feature attached to it.  None of my other pages look this way when I load them.  Can someone help me understand what this is?  I have attached a screen shot so that you can see what I am talking about.  Thank you in advance for your assistance.

    Hey Nancy O, Nope that didn't fix it either. I thought it might be something like that, but I didn't know how to find that item. I'm sure it is still something like that. I have pasted the code here....it's very spaghetti-ish, so please forgive me. Also, there are several includes that are also included in the other pages that work fine. Now again, I'm sort of fishing here. I'm having a problem with this page not displaying the CSS information correctly and so far this blue "selection" is the only thing I can find different. I feel so stupid...But I do greatly appreciate everyone’s help.  Um...If I was supposed to import this or display it differently, please let me know....I'm not fully up on the forums etiquette
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*,java.util.Calendar,java.util.Date,java.text.DateFormat,java.text.Simpl eDateFormat" errorPage="" %>
    <%@ include file="Connections/bormit.jsp" %>
    <%@ include file="MethodFormatPhoneNumber.jsp" %>
    <%@ include file="MethodFormatDollars.jsp" %>
    <%@ include file="MethodCalculateAge.jsp" %>
    <%@ include file="bormitShareCode.jsp" %>
    <%
    Date curDate = new Date();
    Calendar cal1 = Calendar.getInstance();
    cal1.setTime(curDate);
    long curTime = cal1.getTimeInMillis();
    String txtPrevPage = "" + request.getParameter("txtFromPage");
    String setFieldFocus = "";
    String regFirstName = "";
    String regMiddleName = "";
    String regLastName = "";
    String regSuffix = "";
    String regBirthday = "";
    String regHomePhone = "";
    String regWorkPhone = "";
    String regMobilePhone = "";
    String regEmailAddress = "";
    String regAddress1 = "";
    String regAddress2 = "";
    String regAddress3 = "";
    String regCity = "";
    String regStateId = "";
    String regZipCode = "";
    String regCountryId = "";
    String regNumChildren = "";
    String regMarried = "";
    String regServicePlan = "";
    String regEducation = "";
    String regOccupation = "";
    String regCurrentJob = "";
    String regEyeColor = "";
    String regHairColor = "";
    String regGender = "";
    String regHeightFeet = "";
    String regHeightInches = "";
    String regWeight = "";
    String regMeasureType = "";
    String regBloodType = "";
    String regPicture = "";
    String regStatus = "Pending";
    String regSSN = "";
    if(txtPrevPage.equals("/RegisterAccount.jsp")) {
    session.setAttribute("sesLoginId",request.getParameter("txtUserId"));
    regFirstName = "" + request.getParameter("txtFirstName");
    regMiddleName = "" + request.getParameter("txtMiddleName");
    regLastName = "" + request.getParameter("txtLastName");
    regBirthday = "" + request.getParameter("txtBirthday");
        setFieldFocus = "document.forms.createPerson.selectServicePlans.focus()"; 
    } else
    if(txtPrevPage.equals("/WBPersonInfo.jsp")) {
    regFirstName = "" + request.getParameter("txtFirstName");
    regMiddleName = "" + request.getParameter("txtMiddleName");
    regLastName = "" + request.getParameter("txtLastName");
    regSuffix = "" + request.getParameter("selectSuffix");
    String newBirthday = "" + request.getParameter("txtBirthday");
        regBirthday = newBirthday.replaceAll("/", "-");
    regHomePhone = "" + request.getParameter("txtHomePhone");
    regWorkPhone = "" + request.getParameter("txtWorkPhone");
    regMobilePhone = "" + request.getParameter("txtMobilePhone");
    regEmailAddress = "" + request.getParameter("txtEmailAddress");
    regAddress1 = "" + request.getParameter("txtAddressLine1");
    regAddress2 = "" + request.getParameter("txtAddressLine2");
    regAddress3 = "" + request.getParameter("txtAddressLine3");
    regCity = "" + request.getParameter("txtCity");
    regStateId = "" + request.getParameter("drpdwnState");
    regZipCode = "" + request.getParameter("txtZipCode");
    regCountryId = "" + request.getParameter("selectCountry");
    regNumChildren = "" + request.getParameter("txtNumChildren");
    regMarried = "" + request.getParameter("txtMarriage");
    regServicePlan = "" + request.getParameter("selectServicePlans");
    regEducation = "" + request.getParameter("selectEducation");
    regOccupation = "" + request.getParameter("selectOccupation");
    regCurrentJob = "" + request.getParameter("txtCurrentJob");
    regEyeColor = "" + request.getParameter("selectEyeColor");
    regHairColor = "" + request.getParameter("selectHairColor");
    regGender = "" + request.getParameter("selectGender");
    regHeightFeet = "" + request.getParameter("txtHeightFeet");
    regHeightInches = "" + request.getParameter("txtHeightInches");
    regWeight = "" + request.getParameter("txtWeight");
    regMeasureType = "" + request.getParameter("txtWeightType");
    regBloodType = "" + request.getParameter("selectBloodType");
    regPicture = "" + request.getParameter("txtPicture");
    regStatus = "" + request.getParameter("txtStatus");
    regSSN = "" + request.getParameter("txtSSN");
        setFieldFocus = "document.forms.createPerson.txtFirstName.focus()";  
    } else {
    txtPrevPage = "" + bormitServerPage;
        setFieldFocus = "document.forms.createPerson.txtFirstName.focus()";
    %>
    <%
    String getAcctAddress__MMCol_PersonsId = "0";
    if (session.getAttribute("sesPersonsId")  !=null) {getAcctAddress__MMCol_PersonsId = (String)session.getAttribute("sesPersonsId") ;}
    %>
    <%
    Driver DrivergetAcctAddress = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetAcctAddress = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetAcctAddress = ConngetAcctAddress.prepareStatement("SELECT addr_address_line1,        addr_address_line2,        addr_address_line3,        addr_city,        addr_state_id,        (SELECT stae_state_abbr           FROM states          WHERE stae_id = addr_state_id)           AS stateAbbr,        (SELECT zipc_zipcode           FROM zipcodes          WHERE zipc_id = addr_zip_code_id)           AS zipCode,        addr_zip_plus4,        addr_foreign_zip   FROM addressrefxr, addresses  WHERE     adxr_reference_id = ?        AND adxr_address_id = addr_id        AND addr_status = 1        AND adxr_status = 1        AND addressrefxr.adxr_table_name = 'persons'        AND adxr_type = (SELECT adty_id                           FROM addresstypes                          WHERE adty_desc = 'Home')");
    StatementgetAcctAddress.setObject(1, getAcctAddress__MMCol_PersonsId);
    ResultSet getAcctAddress = StatementgetAcctAddress.executeQuery();
    boolean getAcctAddress_isEmpty = !getAcctAddress.next();
    boolean getAcctAddress_hasData = !getAcctAddress_isEmpty;
    Object getAcctAddress_data;
    int getAcctAddress_numRows = 0;
    %>
    <% String MM_Response_Msg = "Add Personal Information from Page=" + txtPrevPage;
       String MM_Response_Error = " ";
       if(!getAcctAddress_hasData && (!txtPrevPage.equals("/RegisterAccount.jsp") && !txtPrevPage.equals("/WBCart.jsp") && !txtPrevPage.equals("/WBPersonInfo.jsp"))) {
          MM_Response_Msg = "Error Selecting Data. PrevPage=" + txtPrevPage;
       MM_Response_Error = "Address Information could not found in database. Personsid=" + getAcctAddress__MMCol_PersonsId;
    %>
    <%
    String WriteLogRecs__param_login_id = "0";
    if(session.getAttribute("sesLoginId") != null){ WriteLogRecs__param_login_id = (String)session.getAttribute("sesLoginId");}
    String WriteLogRecs__param_persons_id = "0";
    if(session.getAttribute("sesPersonsId") != null){ WriteLogRecs__param_persons_id = (String)session.getAttribute("sesPersonsId");}
    String WriteLogRecs__param_accounts_id = "0";
    if(session.getAttribute("sesAccountId") != null){ WriteLogRecs__param_accounts_id = (String)session.getAttribute("sesAccountId");}
    String WriteLogRecs__param_ip_address = "";
    if(request.getRemoteAddr() != null){ WriteLogRecs__param_ip_address = (String)request.getRemoteAddr();}
    String WriteLogRecs__param_serial_num = "0";
    if(request.getParameter("0") != null){ WriteLogRecs__param_serial_num = (String)request.getParameter("0");}
    String WriteLogRecs__param_module_name = "";
    if(bormitServerPage != null){ WriteLogRecs__param_module_name = (String)bormitServerPage;}
    String WriteLogRecs__param_msg = "";
    if(MM_Response_Msg != null){ WriteLogRecs__param_msg = (String)MM_Response_Msg;}
    String WriteLogRecs__param_error = "";
    if(MM_Response_Error != null){ WriteLogRecs__param_error = (String)MM_Response_Error;}
    String WriteLogRecs__param_mobile_module = "";
    %>
    <%
    Driver DrivergetMeasureTypes = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetMeasureTypes = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetMeasureTypes = ConngetMeasureTypes.prepareStatement("SELECT msty_id, msty_short_desc, msty_status, msty_abbr FROM bormit.measuretypes WHERE msty_status = 1 AND msty_isweight = 1");
    ResultSet getMeasureTypes = StatementgetMeasureTypes.executeQuery();
    boolean getMeasureTypes_isEmpty = !getMeasureTypes.next();
    boolean getMeasureTypes_hasData = !getMeasureTypes_isEmpty;
    Object getMeasureTypes_data;
    int getMeasureTypes_numRows = 0;
    %>
    <%
    Driver DrivergetHairColor = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetHairColor = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetHairColor = ConngetHairColor.prepareStatement("SELECT colr_color, colr_id FROM colors WHERE colr_ishaircolor is TRUE ORDER BY colr_color");
    ResultSet getHairColor = StatementgetHairColor.executeQuery();
    boolean getHairColor_isEmpty = !getHairColor.next();
    boolean getHairColor_hasData = !getHairColor_isEmpty;
    Object getHairColor_data;
    int getHairColor_numRows = 0;
    %>
    <%
    Driver DrivergetEyeColors = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetEyeColors = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetEyeColors = ConngetEyeColors.prepareStatement("SELECT colr_color, colr_id FROM colors WHERE colr_iseyecolor is TRUE ORDER BY colr_color");
    ResultSet getEyeColors = StatementgetEyeColors.executeQuery();
    boolean getEyeColors_isEmpty = !getEyeColors.next();
    boolean getEyeColors_hasData = !getEyeColors_isEmpty;
    Object getEyeColors_data;
    int getEyeColors_numRows = 0;
    %>
    <%
    Driver DrivergetEducation = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetEducation = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetEducation = ConngetEducation.prepareStatement("SELECT edlv_level, edlv_id FROM educationlevels");
    ResultSet getEducation = StatementgetEducation.executeQuery();
    boolean getEducation_isEmpty = !getEducation.next();
    boolean getEducation_hasData = !getEducation_isEmpty;
    Object getEducation_data;
    int getEducation_numRows = 0;
    %>
    <%
    Driver DrivergetStates = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetStates = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetStates = ConngetStates.prepareStatement("SELECT stae_state_abbr, stae_id, stae_majority FROM states ORDER BY stae_state_abbr");
    ResultSet getStates = StatementgetStates.executeQuery();
    boolean getStates_isEmpty = !getStates.next();
    boolean getStates_hasData = !getStates_isEmpty;
    Object getStates_data;
    int getStates_numRows = 0;
    %>
    <%
    Driver DrivergetOccupations = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetOccupations = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetOccupations = ConngetOccupations.prepareStatement("SELECT occp_short_desc, occp_id FROM bormit.occupations ORDER BY occp_short_desc");
    ResultSet getOccupations = StatementgetOccupations.executeQuery();
    boolean getOccupations_isEmpty = !getOccupations.next();
    boolean getOccupations_hasData = !getOccupations_isEmpty;
    Object getOccupations_data;
    int getOccupations_numRows = 0;
    %>
    <%
    Driver DrivergetServicePlans = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetServicePlans = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetServicePlans = ConngetServicePlans.prepareStatement("SELECT srpl_short_desc, srpl_amount, srpl_id FROM serviceplans WHERE srpl_status = 1  AND srpl_ispersonrate_plan is true ORDER BY srpl_short_desc");
    ResultSet getServicePlans = StatementgetServicePlans.executeQuery();
    boolean getServicePlans_isEmpty = !getServicePlans.next();
    boolean getServicePlans_hasData = !getServicePlans_isEmpty;
    Object getServicePlans_data;
    int getServicePlans_numRows = 0;
    %>
    <%
    String getAcctState__MM_Acct_State = "0";
    if (request.getParameter("drpdwnState") !=null) {getAcctState__MM_Acct_State = (String)request.getParameter("drpdwnState");}
    %>
    <%
    Driver DrivergetAcctState = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetAcctState = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetAcctState = ConngetAcctState.prepareStatement("SELECT stae_id, stae_state_abbr FROM bormit.states WHERE stae_id = ?");
    StatementgetAcctState.setObject(1, getAcctState__MM_Acct_State);
    ResultSet getAcctState = StatementgetAcctState.executeQuery();
    boolean getAcctState_isEmpty = !getAcctState.next();
    boolean getAcctState_hasData = !getAcctState_isEmpty;
    Object getAcctState_data;
    int getAcctState_numRows = 0;
    %>
    <%
    Driver DrivergetBloodTypes = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetBloodTypes = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetBloodTypes = ConngetBloodTypes.prepareStatement("SELECT blty_id, blty_short_desc FROM bormit.bloodtypes");
    ResultSet getBloodTypes = StatementgetBloodTypes.executeQuery();
    boolean getBloodTypes_isEmpty = !getBloodTypes.next();
    boolean getBloodTypes_hasData = !getBloodTypes_isEmpty;
    Object getBloodTypes_data;
    int getBloodTypes_numRows = 0;
    %>
    <%
    Driver DrivergetSuffixes = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetSuffixes = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetSuffixes = ConngetSuffixes.prepareStatement("SELECT sufx_id, sufx_desc FROM bormit.suffixes WHERE sufx_status = 1");
    ResultSet getSuffixes = StatementgetSuffixes.executeQuery();
    boolean getSuffixes_isEmpty = !getSuffixes.next();
    boolean getSuffixes_hasData = !getSuffixes_isEmpty;
    Object getSuffixes_data;
    int getSuffixes_numRows = 0;
    %>
    <%
    Driver DrivergetCountries = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetCountries = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetCountries = ConngetCountries.prepareStatement("SELECT cnty_id, cnty_name FROM bormit.countries WHERE cnty_status = 1 ORDER BY cnty_name");
    ResultSet getCountries = StatementgetCountries.executeQuery();
    boolean getCountries_isEmpty = !getCountries.next();
    boolean getCountries_hasData = !getCountries_isEmpty;
    Object getCountries_data;
    int getCountries_numRows = 0;
    %>
    <%
    String getAccountCountry__MM_Acct_Country = "648";
    if (request.getParameter("drpdwnCntry")  !=null) {getAccountCountry__MM_Acct_Country = (String)request.getParameter("drpdwnCntry") ;}
    %>
    <%
    Driver DrivergetAccountCountry = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetAccountCountry = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetAccountCountry = ConngetAccountCountry.prepareStatement("SELECT cnty_id, cnty_name FROM bormit.countries WHERE cnty_id = ?");
    StatementgetAccountCountry.setObject(1, getAccountCountry__MM_Acct_Country);
    ResultSet getAccountCountry = StatementgetAccountCountry.executeQuery();
    boolean getAccountCountry_isEmpty = !getAccountCountry.next();
    boolean getAccountCountry_hasData = !getAccountCountry_isEmpty;
    Object getAccountCountry_data;
    int getAccountCountry_numRows = 0;
    %>
    <%
    String getWrkAddress__MMWONumber = "0";
    if (session.getAttribute("sesWONumber") !=null) {getWrkAddress__MMWONumber = (String)session.getAttribute("sesWONumber");}
    %>
    <%
    Driver DrivergetWrkAddress = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetWrkAddress = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetWrkAddress = ConngetWrkAddress.prepareStatement("SELECT wkad_id,        wkad_wo_number,        wkad_address_line1,        wkad_address_line2,        wkad_address_line3,        wkad_city,        wkad_state_id,        (SELECT stae_state_abbr           FROM states          WHERE stae_id = wkad_state_id)           AS stateAbbr, wkad_zip_code_id,        (SELECT zipc_zipcode           FROM zipcodes          WHERE zipc_id = wkad_zip_code_id)           AS zipCode,               wkad_foreign_zip,        wkad_country_id FROM bormit.wrkaddresses WHERE wkad_wo_number = ?");
    StatementgetWrkAddress.setObject(1, getWrkAddress__MMWONumber);
    ResultSet getWrkAddress = StatementgetWrkAddress.executeQuery();
    boolean getWrkAddress_isEmpty = !getWrkAddress.next();
    boolean getWrkAddress_hasData = !getWrkAddress_isEmpty;
    Object getWrkAddress_data;
    int getWrkAddress_numRows = 0;
    %>
    <%
       if(!getWrkAddress_hasData && txtPrevPage.equals("/WBCart.jsp")) {
          MM_Response_Msg = "Error Selecting Data. PrevPage=" + txtPrevPage;
       MM_Response_Error = "Wrk Address Information could not found in database. WONumber=" + getWrkAddress__MMWONumber;
    %>
    <%
    Driver DriverWriteLogRecs = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConnWriteLogRecs = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    CallableStatement WriteLogRecs = ConnWriteLogRecs.prepareCall("{call bormit.writeLogRec(?,?,?,?,?,?,?,?,?)}");
    Object WriteLogRecs_data;
    WriteLogRecs.setString(1,WriteLogRecs__param_login_id);
    WriteLogRecs.setString(2,WriteLogRecs__param_persons_id);
    WriteLogRecs.setString(3,WriteLogRecs__param_accounts_id);
    WriteLogRecs.setString(4,WriteLogRecs__param_ip_address);
    WriteLogRecs.setString(5,WriteLogRecs__param_serial_num);
    WriteLogRecs.setString(6,WriteLogRecs__param_module_name);
    WriteLogRecs.setString(7,WriteLogRecs__param_msg);
    WriteLogRecs.setString(8,WriteLogRecs__param_error);
    WriteLogRecs.setString(9,WriteLogRecs__param_mobile_module);
    WriteLogRecs.execute();
    %>
    <%
    String getLoginName__MMLoginId = "0";
    if (session.getAttribute("sesLoginId") !=null) {getLoginName__MMLoginId = (String)session.getAttribute("sesLoginId");}
    %>
    <%
    Driver DrivergetLoginName = (Driver)Class.forName(MM_bormit_DRIVER).newInstance();
    Connection ConngetLoginName = DriverManager.getConnection(MM_bormit_STRING,MM_bormit_USERNAME,MM_bormit_PASSWORD);
    PreparedStatement StatementgetLoginName = ConngetLoginName.prepareStatement("SELECT lpxr_logins_id, lpxr_persons_id, lpxr_status,pers_first_name, pers_middle_name, pers_last_name FROM bormit.loginspersonsxr,      persons WHERE lpxr_logins_id = ?  AND lpxr_persons_id = pers_id");
    StatementgetLoginName.setObject(1, getLoginName__MMLoginId);
    ResultSet getLoginName = StatementgetLoginName.executeQuery();
    boolean getLoginName_isEmpty = !getLoginName.next();
    boolean getLoginName_hasData = !getLoginName_isEmpty;
    Object getLoginName_data;
    int getLoginName_numRows = 0;
    %>
    <%
    int Repeat1__numRows = -1;
    int Repeat1__index = 0;
    getHairColor_numRows += Repeat1__numRows;
    %>
    <%
    int Repeat2__numRows = -1;
    int Repeat2__index = 0;
    getEducation_numRows += Repeat2__numRows;
    %>
    <%
    int Repeat3__numRows = -1;
    int Repeat3__index = 0;
    getEyeColors_numRows += Repeat3__numRows;
    %>
    <%
    int Repeat4__numRows = -1;
    int Repeat4__index = 0;
    getStates_numRows += Repeat4__numRows;
    %>
    <%
    int Repeat5__numRows = -1;
    int Repeat5__index = 0;
    getOccupations_numRows += Repeat5__numRows;
    %>
    <%
    int Repeat6__numRows = -1;
    int Repeat6__index = 0;
    getServicePlans_numRows += Repeat6__numRows;
    %>
    <%
    int Repeat7__numRows = -1;
    int Repeat7__index = 0;
    getBloodTypes_numRows += Repeat7__numRows;
    %>
    <%
    int Repeat8__numRows = -1;
    int Repeat8__index = 0;
    getCountries_numRows += Repeat8__numRows;
    %>
    <%
    int Repeat9__numRows = -1;
    int Repeat9__index = 0;
    getSuffixes_numRows += Repeat9__numRows;
    %>
    <%
    int Repeat10__numRows = -1;
    int Repeat10__index = 0;
    getMeasureTypes_numRows += Repeat10__numRows;
    %>
    <!-- Code to build the address output -->
    <%
    String inAddressLine1 = "";
    String inAddressLine2 = "";
    String inAddressLine3 = "";
    String inCity = "";
    String inStateId = "";
    String inState = "";
    String inZipCodeId = "";
    String inZipCode = "";
    String inCountryId = "";
    String inCountry = "";
    if(txtPrevPage.equals("/RegisterAccount.jsp")) {
       inAddressLine1 = "" + request.getParameter("txtAddressLine1");
       inAddressLine2 = "" + request.getParameter("txtAddressLine2");
       inAddressLine3 = "" + request.getParameter("txtAddressLine3");
       inCity = "" + request.getParameter("txtCity");
       inZipCode = "" + request.getParameter("txtZipCode");
       inCountry = "" + (((getAccountCountry_data = getAccountCountry.getObject("cnty_name"))==null || getAccountCountry.wasNull())?"":getAccountCountry_data);
       inStateId = "" + getAcctState__MM_Acct_State;
       inState = "" + (((getAcctState_data = getAcctState.getObject("stae_state_abbr"))==null || getAcctState.wasNull())?"":getAcctState_data);
       inCountryId = "" + getAccountCountry__MM_Acct_Country;
    } else
    if(txtPrevPage.equals("/WBCart.jsp")) {
       inAddressLine1 = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_address_line1"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inAddressLine2 = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_address_line2"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inAddressLine3 = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_address_line3"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inCity = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_city"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inZipCode = "" + (((getWrkAddress_data = getWrkAddress.getObject("zipCode"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inCountry = "" + (((getAccountCountry_data = getAccountCountry.getObject("cnty_name"))==null || getAccountCountry.wasNull())?"":getAccountCountry_data);
       inStateId = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_state_id"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inState = "" + (((getWrkAddress_data = getWrkAddress.getObject("stateAbbr"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
       inCountryId = "" + (((getWrkAddress_data = getWrkAddress.getObject("wkad_country_id"))==null || getWrkAddress.wasNull())?"":getWrkAddress_data);
    } else {
       inAddressLine1 = "" + (((getAcctAddress_data = getAcctAddress.getObject("addr_address_line1"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inAddressLine2 = "" + (((getAcctAddress_data = getAcctAddress.getObject("addr_address_line2"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inAddressLine3 = "" + (((getAcctAddress_data = getAcctAddress.getObject("addr_address_line3"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inCity = "" + (((getAcctAddress_data = getAcctAddress.getObject("addr_city"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inStateId = "" + (((getAcctAddress_data = getAcctAddress.getObject("addr_state_id"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inState = "" + (((getAcctAddress_data = getAcctAddress.getObject("stateAbbr"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inZipCode = "" + (((getAcctAddress_data = getAcctAddress.getObject("zipCode"))==null || getAcctAddress.wasNull())?"":getAcctAddress_data);
       inCountryId = "" + getAccountCountry__MM_Acct_Country;
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Create Person Entry</title>
    <link type='text/css' href='/Spry-UI-1.7/css/Menu/basic/SpryMenuBasic.css' rel='stylesheet'>
    <link rel="stylesheet" type="text/css" href="bormit.css">
    <script type='text/javascript' src='/Spry-UI-1.7/includes/SpryDOMUtils.js'></script>
    <script type='text/javascript' src='/Spry-UI-1.7/includes/SpryDOMEffects.js'></script>
    <script type='text/javascript' src='/Spry-UI-1.7/includes/SpryWidget.js'></script>
    <script type='text/javascript' src='/Spry-UI-1.7/includes/SpryMenu.js'></script>
    <script type='text/javascript' src='/Spry-UI-1.7/includes/plugins/MenuBar2/SpryMenuBarKeyNavigationPlugin.js'></script>
    <script type='text/javascript' src='/Spry-UI-1.7/includes/plugins/MenuBar2/SpryMenuBarIEWorkaroundsPlugin.js'></script>
    <script type="text/javascript">
    function FillinAddress()
    var jsAddressLine1 = "<%=inAddressLine1%>";
    var jsAddressLine2 = "<%=inAddressLine2%>";
    var jsAddressLine3 = "<%=inAddressLine3%>";
    var jsCity = "<%=inCity%>";
    var jsZipCode = "<%=inZipCode%>";
    var stateId = '<%=inStateId%>';
    var countryId = '<%=inCountryId%>';
    var countryName;
    if(document.createPerson.cbKeepAddress.checked == true) {
       document.createPerson.txtAddressLine1.value = jsAddressLine1;
       document.createPerson.txtAddressLine2.value = jsAddressLine2;
       document.createPerson.txtAddressLine3.value = jsAddressLine3;
       document.createPerson.txtCity.value = jsCity;
       document.createPerson.txtZipCode.value = jsZipCode;   
       for (i=0; i<document.createPerson.selectCountry.length; i++){
           if (document.createPerson.selectCountry[i].value==countryId)
                  document.createPerson.selectCountry[i].selected  = true;
         countryName = document.createPerson.selectCountry[i].text;
       if(countryName == "United States") {
           for (i=0; i<document.createPerson.selectState.length; i++){
            var dashOffset = document.createPerson.selectState[i].value.indexOf('-');
                if (document.createPerson.selectState[i].value.substring(0,dashOffset)==stateId)
                     document.createPerson.selectState[i].selected  = true;
       } else {
        document.createPerson.selectState.disabled = true;
    } else {
           document.createPerson.txtAddressLine1.value = '';
           document.createPerson.txtAddressLine2.value = '';
           document.createPerson.txtAddressLine3.value = '';
           document.createPerson.txtCity.value = '';
           document.createPerson.txtZipCode.value = '';
    // Check the Users Age for Logins
    function checkUserAge()
    // We are expecting the input date to be in the format MM-DD-YYYY.
    var jsBirthday = document.createPerson.txtBirthday.value;
    var jsEmailAddress = document.getElementById("txtEmailAddress").value;
    var jsYear = "";
    var jsMonth = "";
    var jsDay = "";
    var jsIndex1 = jsBirthday.indexOf("-");
    var jsIndex2 = jsBirthday.indexOf("-", jsIndex1 + 1);
    var jsAge = "";
    var stateId = "";
    var stateMajority = 0;
    var returnValue = "true";
    if(jsIndex1 == 0) {
    alert("The Birthdate Entered is invalid.  Please try again");
    returnValue = false;
    } else {
       jsMonth = jsBirthday.substring(0, jsIndex1);
       jsDay = jsBirthday.substring(jsIndex1 + 1,jsIndex2);
       jsYear = jsBirthday.substring(jsIndex2 + 1);  
    if(jsMonth < 1 || jsMonth > 12) {
    alert("Birthday Month is invalid.  Please reenter");
    document.createPerson.txtBirthday.focus();
    returnValue = "false";
    } else
    if(jsDay < 1 || jsDay > 31) {
    alert("Birthday Day is invalid.  Please reenter");
    document.createPerson.txtBirthday.focus();
    returnValue = "false";
    } else
    if(jsYear.length != 4) {
    alert("Birthday Year is invalid.  Please reenter");
    document.createPerson.txtBirthday.focus();
    returnValue = "false";
    for(var i = 0; i < document.createPerson.selectState.length; i++) {
    if(document.createPerson.selectState[i].selected) {
      stateId = document.createPerson.selectState[i].value;
      var dashIndex = stateId.indexOf("-");
      stateMajority = stateId.substring(dashIndex + 1);
    if(stateMajority == null || stateMajority == "") {
    stateMajority = 18;
    jsAge = calculate_age(jsMonth, jsDay, jsYear);
    //alert("Birthday Year=" + jsYear + " Month=" + jsMonth + " Day=" + jsDay + " age=" + jsAge);
    if(jsAge > (stateMajority - 1)) {
        if(document.pressed != "Add" && (jsEmailAddress == null || (jsEmailAddress.length == 0 || jsEmailAddress.length == -1))) {
         document.getElementById("emailRequired").style.visibility='visible'; //show other options
         document.getElementById("txtSendEmail").value = '1';  // Set the Send email flag to yes.
         alert("This persons age is over the age of the Majority.  Therefore, they will have to decide if they will allow others to view their information.  Please enter an email address so that we may contact them.");
    } else
    if(jsEmailAddress == null || (jsEmailAddress.length == 0 || jsEmailAddress.length == -1)) {
         document.getElementById("emailRequired").style.visibility='visible'; //show other options
         document.getElementById("txtSendEmail").value = '1';  // Set the Send email flag to yes.
         alert("This persons age is over the age of the Majority.  Therefore, they will have to decide if they will allow others to view their information.  Please enter an email address so that we may contact them.");
      returnValue = "false";
    } else {
      //alert("document.pressed was Add and txtEmailAddress.length=" + document.getElementById("txtEmailAddress").length);
    } else {
    document.getElementById("emailRequired").style.visibility='hidden'; //show other options
    document.getElementById("txtSendEmail").value = '0'; // set the Send Email Flag to NO.
    return returnValue;
    // Function to Calculate Age
    function calculate_age(birth_month,birth_day,birth_year)
        today_date = new Date();
        today_year = today_date.getFullYear();
        today_month = today_date.getMonth();
        today_day = today_date.getDate();
        age = today_year - birth_year;
        if ( today_month < (birth_month - 1))
          age--;
        if (((birth_month - 1) == today_month) && (today_day < birth_day))
          age--;
      return age;
    </script>
    <SCRIPT TYPE="text/javascript">
    function SubmitDataCheck()
    var txtFirstName = document.createPerson.txtFirstName.value;
    var txtMiddleName = document.createPerson.txtMiddleName.value;
    var txtLastName = document.createPerson.txtLastName.value;
    var txtBirthday = document.createPerson.txtBirthday.value;
    var txtSSN = document.createPerson.txtSSN.value;
    var newSSN = "";
    var stateSelected = document.createPerson.selectState.selectedIndex;
    var srvPlanSelected = document.createPerson.selectServicePlans.selectedIndex;
    var country = document.createPerson.selectCountry.selectedIndex;
    var countrySel = document.getElementById("selectCountry");
    var countryText = countrySel.options[countrySel.selectedIndex].text;
    var returnval = false;
    var txtEmail=document.createPerson.txtEmailAddress.value;
    var atpos=txtEmail.indexOf("@");
    var dotpos=txtEmail.lastIndexOf(".");
    <%
    if(txtPrevPage.equals("/RegisterAccount.jsp") || txtPrevPage.equals("/WBCart.jsp") ){
    %>var returnToAcct = "yes";
    <%} else
    if(txtPrevPage.equals("/WBPersonInfo.jsp") ){
        %>var returnToAcct = "edit";
    <%} else {
    %>var returnToAcct = "no";
    <% } %>
    if(document.pressed == "  Cancel  ")
       var r=confirm("Are you sure you wish to exit?");
       if (r==true)
       { if(returnToAcct == "yes" )
             document.createPerson.action ="/LogOff.jsp";
             return true;
      } else
         if(returnToAcct == "edit" )
             document.createPerson.action ="/WBPersonInfo.jsp";
             return true;
          } else {
             document.createPerson.action ="/WBAccountInfo.jsp";
             return true;
       } else
           return false;
    if (txtEmail.length > 0 && (atpos<1 || dotpos<atpos+2 || dotpos+2>=txtEmail.length))
       alert("You have entered an invalid format for an e-mail address.  Please correct the e-mail address before continuing.");
       document.createPerson.txtEmailAddress.focus();
       return false;
    } else
    if (txtEmail.length == 0 && document.getElementById("txtSendEmail").value == 1) {
    alert("Because this persons is over the age of majority for the Country and State to which they live, the Email address is required.  Please enter an Email address before clicking the Add Button.");
    document.createPerson.txtEmailAddress.focus();
    return false;
    if(txtSSN.length == 0) {
    alert("The SSN must be entered.  Please reenter the last 4 characters of your SSN before proceeding.");
        document.forms.createPerson.txtSSN.focus()       
        return false;
    } else
    if(txtSSN.length > 0) {
    if(txtSSN.length > 8) {
      var asterickSSN = txtSSN.substring(0, 7);;
      if(asterickSSN == "***-**-") {
       // bypass this SSN Check.
      } else {
          var index1 = txtSSN.indexOf("-");
          if(index1 == -1) {
           newSSN = txtSSN;
        if(newSSN.length != 9) {
              alert("The SSN must be 9 characters long without editing.  If edited it should be 11 characters.  Please reenter a correct SSN before proceeding.");
                         document.forms.createPerson.txtSSN.focus()     
          return false;
                } else {
           // SSN Good to go....
       } else {
        var ssn1 = txtSSN.substring(0,index1);
        var index2 = txtSSN.indexOf("-", index1 + 1);
        var ssn2 = txtSSN.substring(index1 + 1, index2);
        var ssn3 = txtSSN.substring(index2 + 1);
        newSSN = ssn1 + ssn2 + ssn3;
        if(ssn1.length != 3 || ssn2.length != 2 || ssn3.length != 4) {
          alert("The SSN must be 9 characters long without editing.  If edited it should be 11 characters.  Please reenter a correct SSN before proceeding.");
                         document.forms.createPerson.txtSSN.focus()           
          return false;
    } else
        if(txtSSN.length < 4) {
      alert("The SSN must be 4 characters long.  Please reenter the last 4 characters of your SSN before proceeding.");
            document.forms.createPerson.txtSSN.focus()       
      return false;
    var returnvalue = checkUserAge();
    if(returnvalue == "false") {
    return false;
    if ( (txtFirstName != "") && (txtMiddleName != "") && (txtLastName != "")  && (txtSSN != "")
    &&  (country != "0")    &&  (txtBirthday != "")   && (srvPlanSelected != "0")
    && (countryText.equals("United States") && stateSelected != "0")
        //document.createPerson.action ="/MBWriteWrkPerson.jsp";
        return true;
    } else
       alert("All required fields must be entered before clicking on the Add Button");
       return false;
    // -->
    </SCRIPT>
    <script type="text/javascript">
    // Popup window code
    function newPopup(url) {
    popupWindow = window.open(
      url,'popUpWindow','height=500,width=500,left=250,top=150,resizable=yes,scrollbars=yes,too lbar=yes,menubar=no,location=no,directories=no,status=yes')
    </script>
    <script language="javascript" type="text/javascript" src="datetimepicker.js">
    //Date Time Picker script- by TengYong Ng of http://www.rainforestnet.com
    //Script featured on JavaScript Kit (http://www.javascriptkit.com)
    //For this script, visit http://www.javascriptkit.com
    </script>
    </head>
    <body onLoad="<%=setFieldFocus%>" >
    <div align="center">
    <%@include file="bormitHeadersTop.shtml" %>
    <%
    String disAddrLine1 = "";
    String disAddrLine2 = "";
    String disAddrLine3 = "";
    String disAddrLine4 = "";
    String disAddrLine5 = "";
    String disAddrLine6 = "";
    String holdAddrLine1 = inAddressLine1;
    String holdAddrLine2 = inAddressLine2;
    String holdAddrLine3 = inAddressLine3;
    String holdAddrLine4 = inCity;
    String holdAddrLine5 = inState + ", " + inZipCode;
    String holdAddrLine6 = inCountry;
    if(holdAddrLine1.equals("") || holdAddrLine1.equals(" ") ){
    if(holdAddrLine2.equals("") || holdAddrLine2.equals(" ")) {
      if(holdAddrLine3.equals("") || holdAddrLine3.equals(" ") ){
       disAddrLine1 = holdAddrLine4;
       disAddrLine2 = holdAddrLine5;
       disAddrLine3 = holdAddrLine6;
      } else {
       disAddrLine1 = holdAddrLine3;
       disAddrLine2 = holdAddrLine4;
       disAddrLine3 = holdAddrLine5;
       disAddrLine4 = holdAddrLine6;
    } else {
            disAddrLine1 = holdAddrLine2;
         if(holdAddrLine3.equals("") || holdAddrLine3.equals(" ")) {
       disAddrLine2 = holdAddrLine4;
       disAddrLine3 = holdAddrLine5;
       disAddrLine3 = holdAddrLine6;
      } else { 
          disAddrLine2 = holdAddrLine3;
          disAddrLine3 = holdAddrLine4;
       disAddrLine4 = holdAddrLine5;
       disAddrLine5 = holdAddrLine6;
    } else {
    disAddrLine1 = holdAddrLine1;
    if(holdAddrLine2.equals("") || holdAddrLine2.equals(" ")) {
      if(holdAddrLine3.equals("") || holdAddrLine3.equals(" ")) {
       disAddrLine2 = holdAddrLine4;
       disAddrLine3 = holdAddrLine5;
       disAddrLine4 = holdAddrLine6;
      } else {
       disAddrLine2 = holdAddrLine3;
       disAddrLine3 = holdAddrLine4;
       disAddrLine4 = holdAddrLine5;
       disAddrLine5 = holdAddrLine6;
    } else {
            disAddrLine2 = holdAddrLine2;
         if(holdAddrLine3.equals("") || holdAddrLine3.equals("")) {
       disAddrLine3 = holdAddrLine4;
       disAddrLine4 = holdAddrLine5;
       disAddrLine5 = holdAddrLine6;
      } else { 
          disAddrLine3 = holdAddrLine3;
          disAddrLine4 = holdAddrLine4;
       disAddrLine5 = holdAddrLine5;
       disAddrLine6 = holdAddrLine6;
    %>
      <table width="1233" height="508" border="0" bordercolor="#0066CC" cellpadding="1" cellspacing="0" >
        <!--DWLayoutDefaultTable-->
        <tr>
          <td width="200" rowspan="7" valign="top" class="txtLabel">
          <table width="200" border="0" bordercolor="#99CC00" cellspacing="0" cellpadding="0" >
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
            <tr valign="middle">
              <td> </td>
              <td > </td>
            </tr>
            <tr valign="middle">
              <td width="40"> </td>
              <td width="154"> </td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF" > </td>
              <td bgcolor="#FFFFFF" align="left"><font color="#000000">Account Address:</font></td>
            </tr>
            <tr>
              <td> </td>
              <td align="left"><font color="#FFFFFF"><%=disAddrLine1%></font></td>
            </tr>
            <tr>
              <td> </td>
              <td align="left"><font color="#FFFFFF"><%=disAddrLine2%></font></td>
            </tr>
            <tr>
              <td> </td>
              <td align="left"><font color="#FFFFFF"><%=disAddrLine3%></font></td>
            </tr>
            <tr>
              <td > </td>
              <td align="left"><font color="#FFFFFF"><%=disAddrLine4%></font></td>
            </tr>
            <tr>
              <td > </td>
              <td align="left"><font color="#FFFFFF"><%=disAddrLine5%></font></td>
            </tr>
            <tr>
              <td > </td>
              <td > </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
            </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
          <tr>
          <td><img src="<%=session.getAttribute("sesFillerImage")%>" width="37" height="34"></td>
          <td></td>
          </tr>
            <tr>
    <% if(txtPrevPage.equals((("/RegisterAccount.jsp"))) ) { %>
    <td> </td>
    <% } else { %>
              <td><img src="PatientRecs.png" width="37" height="34" alt="Enter Item"></td>
              <td align="left"><a href="/WBAccountInfo.jsp">Account Information</a></td>
    <% } %>
            </tr>
            <tr>
    <% if(txtPrevPage.equals((("/RegisterAccount.jsp"))) ) { %>
    <td> </td>
    <% } else { %>
              <td><img src="LoginImage.png" width="37" height="34" alt="Member List"></td>
              <td align="left"><a href="/WBLoginInfo.jsp">Member List</a></td>
    <% } %>
            </tr>
            <tr>
    <% if(txtPrevPage.equals((("/RegisterAccount.jsp"))) ) { %>
    <td> </td>
    <% } else { %>
              <td><img src="LogOff.png" width="37" height="34" alt="Log Off"></td>
              <td align="left"><a href="/LogOff.jsp">Log Off</a></td>
    <% } %>
            </tr>
          </table>
       <p> </p>
       <p> </p></td>
          <td width="45" height="250" ><input type="hidden" name="forspacing" value="English"></td>
          <td width="100%" rowspan="2" valign="top" align="left"> 
       <p><strong>Add Persons Information:</strong></p>
       <table width="100%" border="0" bordercolor="#CC3300" cellspacing="0" cellpadding="0">
       <tr>
         <td valign="top">
           <table width="100%" border="0" bordercolor="#00FF00" cellspacing="0" cellpadding="0">
           <tr>
             <td height="407">
                      <table width="837" border="0"  bordercolor="#FFFF33" cellspacing="0" cellpadding="0">
               <tr>
                 <td width="150" height="377" valign="top">
                          <%
            if(regPicture.equals("")) {
             %>
                          <img src="ImageNotAvail_CreatePerson.png" width="150" height="160" alt="Persons Pic"> 
                               <%
            } else {
             %>
                          <img src="<%=regPicture%>?<%=curTime%>" width="150" height="160" alt="Persons Pic"> 
                               <%
            %>
                          </td>
                          <td width="837" valign="top">
    <%
    String setProtected = "";
    String setTextColor = "width:100%";
    if(txtPrevPage.equals("/RegisterAccount.jsp") ) {
         setProtected = "READONLY";
      setTextColor = "width:100%;color:#999";
    // This can be used to reload the image after the user uploads a new one:
    // <INPUT TYPE="button" onClick="history.go(0)" VALUE="Refresh">
    if(txtPrevPage.equals("/WBPersonInfo.jsp") ) {
       %>
        <form name="createPerson" method="post" action="/MBUpdatePerson.jsp" onSubmit="return SubmitDataCheck()">
        <%
    } else {
        %>
        <form name="createPerson" method="post" action="/MBWritePerson.jsp" onSubmit="return SubmitDataCheck()">
    <%
    %>
                    <table width="837" height="100%" border="0" bordercolor="#0000CC" cellspacing="1" cellpadding="1">
                     <tr>
                       <td width="1%" height="19"><input type="hidden" name="txtFromPage" value="<%=txtPrevPage%>"><input type="hidden" name="txtServicePic" value="<%=regPicture%>"></td>
                       <td width="15%" height="19">First Name<font color="#FF0000">*</font>:</td>
                              <td width="29%" height="19">
                         <input <%=setProtected%> type="text" style="<%=setTextColor%>" name="txtFirstName" id="txtFirstName" tabindex=1 value="<%=regFirstName%>">
                        </td>
                       <td width="6%"> </td>
                       <td width="15%">Status:</td>
                       <td width="29%"><%=regStatus%></td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Middle Name<font color="#FF0000">*</font>:</td>
                       <td height="19">
                         <input <%=setProtected%>  type="text" style="<%=setTextColor%>" name="txtMiddleName" id="txtMiddleName" tabindex=2 value="<%=regMiddleName%>">
                       </td>
                       <td height="19"> </td>
                       <td height="19">Married Status:</td>
                       <td height="19">
                                  <%
             String selectedValue0 = "";
             String selectedValue1 = "";
             String selectedValue2 = "";
             String selectedValue3 = "";
             if(regMarried.equals("0")) {
              selectedValue0 = "selected";
             } else
             if(regMarried.equals("1")) {
              selectedValue1 = "selected";
             } else
             if(regMarried.equals("2")) {
              selectedValue2 = "selected";
             } else
             if(regMarried.equals("3")) {
              selectedValue3 = "selected";
             %>
                           <select name="selectMarriage" style="width:100%" id="selectMarriage" class="selectitems" tabindex=20>
                    <option>--Select Item--</option>
                   <option value="0" <%=selectedValue0%>>Single</option>
                   <option value="1" <%=selectedValue1%>>Married</option>
                   <option value="2" <%=selectedValue2%>>Divorced</option>
                   <option value="3" <%=selectedValue3%>>Live In Partner</option>
                             </select>
                         </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Last Name<font color="#FF0000">*</font>:</td>
                       <td height="19">
                         <label for="txtLastName"></label>
                         <input <%=setProtected%> type="text" style="<%=setTextColor%>"name="txtLastName" id="txtLastName" tabindex=3 value="<%=regLastName%>">
                       </td>
                       <td height="19"> </td>
                       <td height="19">Children(#):</td>
                       <td height="19">
                         <input type="text" name="txtNumChildren" style="width:99%" id="txtNumChildren" value="<%=regNumChildren%>" tabindex=21>
                         </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Suffix:</td>
                       <td height="19">
                                <select name="selectSuffix" id="selectSuffix" style="width:100%" class="selectitems" tabindex=4>  
                                <option>--Select Item--</option>
           <% while ((getSuffixes_hasData)&&(Repeat9__numRows-- != 0)) {
           String tableValue = "" + (((getSuffixes_data = getSuffixes.getObject("sufx_id"))==null || getSuffixes.wasNull())?"":getSuffixes_data);
           String sufSelected = "";
           if(tableValue.equals(regSuffix)) {
            sufSelected = "selected";
           } else {
            sufSelected = "";
           %>
                                <option value="<%=(((getSuffixes_data = getSuffixes.getObject("sufx_id"))==null || getSuffixes.wasNull())?"":getSuffixes_data)%>" <%=sufSelected%> ><%=(((getSuffixes_data = getSuffixes.getObject("sufx_desc"))==null || getSuffixes.wasNull())?"":getSuffixes_data)%> </option>
              <%
      Repeat9__index++;
      getSuffixes_hasData = getSuffixes.next();
    %>
                             </select></td>
                       <td height="19"> </td>
                       <td height="19"> </td>
                       <td height="19"> </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Keep Address<font color="#FF0000">**</font>:</td>
                       <td height="19">
                         <label for="txtAddressLine1">
                           <input type="checkbox" name="cbKeepAddress" id="cbKeepAddress" onClick="FillinAddress()" tabindex=5>
                         </label></td>
                       <td height="19"> </td>
                       <td height="19">Education:</td>
                       <td height="19">
                           <label for="selectEducation"></label>
                           <select name="selectEducation" id="selectEducation" style="width:100%" class="selectitems" tabindex=22>  
                                    <option>--Select Item--</option>
       <% while ((getEducation_hasData)&&(Repeat2__numRows-- != 0)) {
       String tableValue = "" + (((getEducation_data = getEducation.getObject("edlv_id"))==null || getEducation.wasNull())?"":getEducation_data);
       String eduSelected = "";
       if(tableValue.equals(regEducation)) {
        eduSelected = "selected";
       } else {
        eduSelected = "";
       %>
                <option value="<%=(((getEducation_data = getEducation.getObject("edlv_id"))==null || getEducation.wasNull())?"":getEducation_data)%>" <%=eduSelected%>><%=(((getEducation_data = getEducation.getObject("edlv_level"))==null || getEducation.wasNull())?"":getEducation_data)%></option>
              <%
      Repeat2__index++;
      getEducation_hasData = getEducation.next();
    %>
                             </select>
                         </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Address Line 1<font color="#FF0000">**</font>:</td>
                       <td height="19">
                         <label for="txtAddressLine2">
                           <input type="text" name="txtAddressLine1" style="width:100%" id="txtAddressLine1" value="<%=regAddress1%>" tabindex=6>
                         </label></td>
                       <td height="19"> </td>
                       <td height="19">Occupation:</td>
                       <td height="19">
                           <label for="selectOccupation"></label>
                           <select name="selectOccupation" id="selectOccupation" style="width:100%" class="selectitems" tabindex=23> 
                                    <option>--Select Item--</option>
        <% while ((getOccupations_hasData)&&(Repeat5__numRows-- != 0)) {
    String tableValue = "" + (((getOccupations_data = getOccupations.getObject("occp_id"))==null || getOccupations.wasNull())?"":getOccupations_data);
    String occSelected = "";
    if(tableValue.equals(regOccupation)) {
      occSelected = "selected";
    } else {
      occSelected = "";
    %>
        <option value="<%=(((getOccupations_data = getOccupations.getObject("occp_id"))==null || getOccupations.wasNull())?"":getOccupations_data)%>" <%=occSelected%>><%=(((getOccupations_data = getOccupations.getObject("occp_short_desc"))==null || getOccupations.wasNull())?"":getOccupations_data)%></option>
                <%
      Repeat5__index++;
      getOccupations_hasData = getOccupations.next();
    %>
                             </select>
                         </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Address Line 2:</td>
                       <td height="19">
                         <label for="txtAddressLine3">
                           <input type="text" name="txtAddressLine2" style="width:100%" id="txtAddressLine2" value="<%=regAddress2%>" tabindex=7>
                         </label></td>
                       <td height="19"> </td>
                       <td height="19">Current Job:</td>
                       <td height="19">
                         <label for="txtCurrentJob"></label>
                         <input type="text" name="txtCurrentJob" style="width:99%" id="txtCurrentJob" value="<%=regCurrentJob%>" tabindex=24>
                       </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">Address Line 3:</td>
                       <td height="19">
                         <label for="txtCity">
                           <input type="text" name="txtAddressLine3" style="width:100%" id="txtAddressLine3" value="<%=regAddress3%>" tabindex=8>
                         </label></td>
                       <td height="19"> </td>
                       <td height="19"> </td>
                       <td height="19"> </td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">City:</td>
                       <td height="19"><input type="text" name="txtCity" style="width:100%" id="txtCity" value="<%=regCity%>" tabindex=9>
                                </td>
                       <td height="19"> </td>
                       <td height="19">Eye Color:</td>
                       <td height="19"> <select name="selectEyeColor" id="selectEyeColor"  style="width:100%" class="selectitems" tabindex=25>
                         <option>--Select Item--</option>
                         <% while ((getEyeColors_hasData)&&(Repeat3__numRows-- != 0)) {
             String tableValue = "" + (((getEyeColors_data = getEyeColors.getObject("colr_id"))==null || getEyeColors.wasNull())?"":getEyeColors_data);
             String eyeSelected = "";
             if(tableValue.equals(regEyeColor)) {
              eyeSelected = "selected";
             } else {
              eyeSelected = "";
             %>
                         <option value="<%=(((getEyeColors_data = getEyeColors.getObject("colr_id"))==null || getEyeColors.wasNull())?"":getEyeColors_data)%>" <%=eyeSelected%>> <%=(((getEyeColors_data = getEyeColors.getObject("colr_color"))==null || getEyeColors.wasNull())?"":getEyeColors_data)%></option>
                         <%
      Repeat3__index++;
      getEyeColors_hasData = getEyeColors.next();
    %>
                         </select></td>
                       </tr>
                     <tr>
                       <td> </td>
                       <td height="19">State:</td>
          

  • What does everyone think of iPhone 5 ?

    Outside of activating issues (I had the sim card issues, resolved now) How do you like iPhone 5 ? Very happy with mine. I really like the new charge port/cord, so nice to just plug in with no concern on the direction of the cord. Screen size is perfect for me, Phone design is much better than 4/4s Overall I think Apple did a nice job.

    I haven't really used the LTE enough yet to really notice a true battery drain but if it does drain the battery quicker that is to be expected if you're comparing it to the battery life of a 3G device. I think I'm going to give it a few battery cycles before I form any real thoughts on it, but as mentioned, it is super light. It suddenly makes the 4s feel like a brick lol. Even with an Otterbox Defender on it, it feels light (I've always been anti-otterbox defender due to the bulk it always puts on devices. The one for the 5 isn't nearly as bad so I went with it.)

  • Apple says not to carry your iphone near your body, but how are you supposed to carry it? What does everyone think about this?

    Just curious, I don't see much about this topic, but apparently the radiation levels of this phone are very high. I bet most people carry their phones in their pockets, yet no one is asking about the fact that apple says not to.  Is this practical? Is this something to be concerned about? I don't care about a phone bending vs. my health being seriously affected.

    I Suspect they are just covering their butts for possible future lawsuits. There are reports that some women who carry their (smaller) cell phones in their bra go on to develop breast rumors directly adjacent to where the phone usually sat. There are also studies that find nerve cell stimulation in the brain directly adjacent to the ear where a phone is being used. Three companies have now developed machines designed to use this effect to treat depression. There is much that is unknown about the effects of RF radiation, so phone companies logically want to avoid liability. No one really knows the risks.
    Franz Kaiser MD

  • What do people think of the Windows 7 Starter

    What does everyone think of the Windows 7 Starter edition that comes preloaded on the netbooks? Are most people doing the upgrade to Home premium and if so how does it perform on the netbooks?

    Hi
    In my opinion its depending of that what you do with your notebook. I mean you have to install a lot of applications on other Windows 7 versions too and if you only use the notebook for Internet and Office I think Windows 7 Starter is enough.
    Furthermore its a good idea the different versions of Windows 7. So you can save money if you dont need all functions.

  • My iPhone 6 panoramic camera does not work properly: the arrow does not turn when i turn my phone. Furthermore sonetti da my Keyboard does not turn as well. What do you think si the problem?

    My iPhone 6 panoramic camera does not work properly: the arrow does not turn when i turn my phone. Furthermore sonetti da my Keyboard does not turn as well. What do you think si the problem?

    Furthermore my keyboard does not turn sometimes as well

  • What does "other" mean at the bottom of the sync page? It is taking up a large amount of space on my phone.

    What does "other" mean at the bottom of the sync page? It is taking up a large amount of space on my phone.

    The other section contains temporary files, such as text messages, iMessages, voicemail, and other storage that is meant for small short term use.  If the other section of your phone has grown quite large and you can't account for what it could be then you may have experienced a syncing error to iTunes.
    I have experienced this problem frequently during my years with the iPhone.  The other portion of my phone grows with every sync of my phone to iTunes.  There comes a point where it takes up the majority of the space on my iPhone, making the device near unusable.
    When it grows to this extent is usually cased by an error during the syncing process.  Any information iTunes can't reconcile during the syncing process is saved out of sight, out of mind, in the 'other' section.
    You will never be able to see or recover this section unless you are very savvy and know how to poke around the archived iPhone back-up on your computer.  (if you are thinking of trying, stop.  It will not be worth your time and effort, or if using third party software, the money or spyware associated with it *cough* iTools *cough*).
    The only fix I have found that works is to back up your phone to iTunes, and preform a 'restore'.  This erases the content of your phone, and restores it to factory settings.
    That is you phone will be as if you took it fresh out of the box.  You can preform a restore from back-up through iTune, or iCloud to get your content back.
    Lo and behold your have trimmed the mystery meat.

  • My imac on OS 10.5.8 is showing near 100% processor usage most of the time. It appeasrs that process SystemUIServer is the culprit using 70% or more of processor time. What does anyone think is causing this ?

    My imac on OS 10.5.8 is showing near 100% processor usage most of the time. It appeasrs that process SystemUIServer is the culprit using 70% or more of processor time. What does anyone think is causing this ?
    What is the purpose of the UIServer module ?
    Is there a good place to learn about the OS modules ?

    Useful information from BDAqua in this thread:
    https://discussions.apple.com/message/22676167#22676167

  • Finished Editing - What does everyone export to?

    Hey
    I have just been playing around with exporting to different formats when the edit had been completed. There are loads of formats available when you use the Quick Time Conversion - What does everyone here use??
    Ofcourse for different applications you will use different formats. But im curious as to what formats people use the most, and what one they use for what application??
    I am finding that when exporting HD footage, you can lose much of the film quality - unless you wait the hour or so for it to encode it into a Quicktime film.
    I look forward to hearing what you have to say. . .
    Thanks

    Hi(Bonjour)!
    Keep in mind that a HD content converted to a SD (Standard definition) format will loose quality because resolution is 6 times smaller in a SD format. C'est la vie.
    When I do "HD" in FCE, I print to tape my finished project on a "final program" tape, I keep source tape with all non-video material on CD or data DVD to make further edit in futur.
    I can export with quicktime (not self-contained) and drag the resulting file in a Standard screen DVD project. The conversion process will occur within iDVD. I'll get a standard DVD for use in home.
    **When my goal is to produce a SD DVD right from start, I downconvert HDV material from my Camcorder -Sony FX1- upon capturing process. It's faster and more reliable than convert HDV within iDVD-PAY ATTENTION TO WIDE SCREEN ISSUES.
    I can export with quicktime conversion to H.264 with full or half size frame dimensions and burn a CD or data DVD or leave a copy on your hard drive. (HD content on Quicktime's web site is compressed with H.264)
    Finally, I use Flip4Mac studio to make some kinds of WMF files for my PC friends.
    Michel Boissonneault

  • What does "you cannot open the application because it is not supported on this architecture" mean?

    What does "you cannot open the application because it is not supported on this architecture" mean?

    well my mac lion (10.4.11) will run minecraft.jar, but runs very slow , i tried downloading minecraft.zip it showed the mc logo with a x on it, i tried opening it, and it said it cant open it because there is no application to open it, do i need a higher version of mac? mainly leopard or snow leopard? This is what it looks like

  • What does radio mean in the contact selection instead of mobile or home, and why is it the default?

    What does radio mean in the contact selection instead of mobile or home, and why is it the default?
    When adding a new contact, the number shows up as "radio" instead of "mobile" or "home" and I have to change it every time. What does "radio" mean and why is it the default? can that be changed?

    Radio is a type of phone service offered by certain carriers.  Sprint for instance offers their Sprint Direct Connect Phones (a.k.a Nextel) which have built in Radios.  Short Wave or CB radio type features. Also referred to as Push to Talk services.
    http://shop.sprint.com/mysprint/services_solutions/category.jsp?catId=solution_s dc&catName=Sprint%20Direct%20Connect
    Think a walkie talkie in your Phone.
    I get the Radio option when using Hotmail contacts as the default Contact creator. If I change it to iCloud or Gmail I no longer get the Radio option in the labels.
    If you are using a service such as Hotmail/Outlook.com for your contacts the radio option may be present.
    You can change which service is the default service to create new contacts with by going to Settings->Mail Contacts & Calendars->Contacts->Default Account
    The Radio label is just an identifier for those types of Phones so you know its a number for a radio phone.

  • What does GET mean in the app store, is there a charge or is it free?

    What does GET mean in the app store, is there a charge or is it free?

    I think bob is right. That may be the problem. You can always contact iTunes Support to see if they can provide a certain answer:
    iTunes Support WorldWide
    Cheers,
    GB

  • What do u think of the latest version?

    i wanted to know what you guys think of the latest version of
    the software??
    by arul vigg and avanti vigg

    Quote from Adobe mail to Connect 6 users:
    "In May 2008, Adobe will launch Adobe® Acrobat®
    Connect™ Pro version 7. This release will help to deliver
    major improvements to web conferencing and eLearning solutions, as
    well as Adobe Presenter software"
    John K.

Maybe you are looking for

  • Transaction code for Open sales order other than VA05

    Hi all, Can any one tell me what is transaction code for open sales order other than VA05. Please help me . Thanks & Regards , Srikanth P.

  • Ipad 2 is asking for apple id after restoring

    I work for a school and we handed out several ipad 2 ,3 and airs over the years. It has come to my attention that I cannot go into recovery mode and restore an ipad any longer with out it asking for an apple id after restored. The problem is that sev

  • EFI Firmware 1.7 won't update on late 2012 Mac Mini

    I bought a 500 GB i5 Mac Mini last Dec. I set it up and updated it to 10.8.2 and updated the EFI Firmware to 1.7 to cover the HDMI flicker issues. But I decided that I wanted to start over from scratch so I re partitioned and did a clean install of M

  • External HD Won't Mount - Force Ejected it and now won't mount

    Hi All, I seem to remember this happening to me before. Isn't there somewhere in the filesystem that OSX writes a file if a drive was mounted? And if you ejected a USB disk incorrectly, it cannot ever mount again? I can't seem to find that fix anywhe

  • Logic Script - calculating Accounts with BAS()

    Hello experts, I am trying to write a script that includes a BAS formula to gather the sum of all the descendants.  I want to pull the value of all, less a few accounts.  This is the line of code I have, and it gives me an error around the BAS formul