Unwanted light blue background suddenly printing on everything. Help!

I have PSE 8 and an Epson Stylus R1900 and Mac 10.6.8 . Until recent when I created a new blank file in PSE, selecting for instance a preset like photo 4 x 6 landscape choosing a white background content and then add my digital images /layers etc and print, if there was any space between images etc, it would be white when printing on photo paper. Now all of a sudden I am getting this light blue or grey background on every print that should be white space with about an 1/8th of inch of white border all the way around. On the print preview it looks white. I haven't changed any settings. I have tried each of the color settings in the Print Settings from Epson Vivid, to Off - no color adjustment etc. Nothing is working. I just don't know enough to figure it out. Any thoughts or assistance would be really appreciated. It is distorting the color of anything I print. On another note...when I print on regular paper, I don't get the background color.

Tried your suggestions including installing a common updater that was recently added in the drivers area of the printer Web site. Unfortunately, I'm not savvy enough to know which color profile is appropriate for my display, so I didn't mess with that. I was able to restart PSE and delete the settings but still have the same problem. Utterly at a loss. Appreciate your suggestions. If you think of anything else..
Tracey

Similar Messages

  • 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>
          

  • My i860 canon printer is suddenly printing color pictures with light blue and darker blue horizontal

    My i860 canon printer is suddenly printing color pictures with light blue and darker blue horizontal lines.  I have changed the cyan blue cartridge and the problem still exists.  Does anyone know what the problem is?  Thanks.

    Hi CSM,
    We can perform a print head cleaning and alignment on the printer to try and resolve the issue.  To do this, please follow the steps below:
    PRINT HEAD CLEANING
    With the printer powered on, press and hold the <Resume/Cancel> button. 
    <1> Resume/Cancel button
    When the power lamp blinks once, release the button.
    Note:  The power lamp will blink and print head cleaning will start. The cleaning completes when the power lamp stops blinking.  (It will take about 30 seconds to a minute for the power lamp to stop blinking and remain lit solid green.)
    PRINT HEAD ALIGNMENT
    Confirm that the printer is powered on, and load Letter-sized white plain paper in the sheet feeder.  
    Note:  If paper other than Letter-sized white plain paper is loaded, print head alignment cannot be performed properly.  The automatic print head alignment must be performed from the Automatic Sheet Feeder on the top of the printer.  It cannot be performed from the cassette.
    Press and hold the <Resume/Cancel> button, and release it when the Power lamp blinks four times.  (The Power lamp will start blinking and pattern printing will start.)  
    Print head alignment will start automatically as the following pattern is printed.  
    Note:  Please wait approx. three minutes until printing is completed.
    Hope this helps!
    This didn't answer your question or issue?  Find more help at Contact Us .
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Light blue "finger" print spot on display

    I have a 20" Cinema display.
    I have noticed a light blue area on the display.
    You can see it if the background is white.
    I noticed if you have a white gradient into red, as you pass this through the affected area, this spot is darker in the transition area.
    These aren't dead pixels but it looks almost like a finger print between the back lighting and the LCD.
    Any idea what this is and if it can be fixed?

    Without a picture it is hard to determine if this is the effect you are experiencing. Check this link and if so you will want to have it serviced before you warranty expires:
    http://web.mac.com/bluloo/iWeb/Site/Blog/BD6DEBD5-BA8E-490D-8EF2-D4B046E0B594.ht ml
    I had this effect on a Dell laptop and they replaced the LCD assembly for me as a result agreeing that it was defective.

  • All emails in Mail print with a light gray background.

    Since upgrading to Mountain Lion all the emails I print from Mail shows with a light gray background.
    How can I change that?
    The printouts just look dirty.
    Thank you!

    Hi Eric,
    Thanks for writing!
    I'm on 10.8.5 which is the latest update.
    I have an HP Laserjet which is about 8 years old. I tried printing out this page and it showed gray. Also went to webmail and the same thing happened. But it didn't happen in InDesign.
    Do you have any idea what's causing this?
    Thank you!
    Wendy

  • Why are my documents only printing in light blue

    My pages doc. are printing in blue on every computer, but everything else i print on line comes out in black.

    Not that I can see. And it's not just a problem with compilations. I have 81 Bob Dylan albums ..........
    The problem as I see it is that the ARTIST view (unlike the ALBUM view) always has the tracks showing, whereas ALBUM view only shows the tracks when you select an album.
    You can see a list of compilations if you are in SONGS with the Column Browser enabled. Compilations is then the first choice in the Artists pane of the browser.

  • Blue highlighted areas are printing with a blue background

    when I highlight a certain section to copy, instead of printing section normally, it's prints it with a blue background.  Is this
    a printer problem or computer  problem.  It only started doing this in the last 2 days, before that it was fine.

    Please read this post then provide some details.  What printer model? What operating system? What program are you printing from?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How do I eliminat the blue background on some sites and on Print Preview?eviewpr

    Some sites I want to print show a blue background and some show it on the print preview even though their page backgrounds are not blue. The "Print Background" choice is not checked. This does not happen with Internet Explorer. I don't want to print wasting all the ink on the background. How can this be rectified?

    This can be a problem with Comcast Constant Guard (Keystroke protection)
    See:
    *[[/questions/870165]]

  • My iPhone 4S screen is suddenly not reacting.  The screen has turned a light blue color but nothing is happening. I have tried several things such as holding the power button, plugging it into the wall, and plugging it into my computer. What should I do?

    My iPhone 4S screen is suddenly not reacting.  The screen has turned a light blue color but nothing is happening. I have tried several things such as holding the power button, plugging it into the wall, and plugging it into my computer. What should I do?

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • A few days ago, my HP printer software updated automatically, everything seemed fine (Mac is running Maverick, my laptop is Snow Leopard).  Out of the blue yesterday, my printer stopped printing (neither Mac can connect), I have tried everything.

    A few days ago, my HP printer software updated automatically, everything seemed fine (Mac is running Maverick, my laptop is Snow Leopard).  Out of the blue yesterday, my printer stopped printing (neither Mac can connect), I have tried everything.  Both the suggestion from HP and Apple, it's making me crazy I've spent most of time trying to fix it.

    You tried exactly what ?
    I most of the time would start with the same Apple Printer Support page tech articles
    OS X Mountain Lion and OS X Lion systems will have the necessary printing software already installed, or will automatically download and install software when the printer is connected or configured. Do not install software that came with the printer as it may be out of date, and do not connect the printer to your Mac yet. Follow the instructions that came with the printer to unpack, install ink or toner, and insert paper.  Finally, use the instructions in this article to connect the printer to your Mac.
    Make sure the printer model is listed in Printer and scanner software, which is a comprehensive list of all printer models that have compatible software for OS X Mountain Lion and OS X Lion.
    How to add a printer
    Start a print job on the Mac and manage its options
    Generate and manage PDFs
    Manage the printer queue and printer dock icon
    Share the printer queue
    Mac OS Printing/Fax (any version), OS X Lion, OS X Mountain Lion
    http://www.apple.com/support/osx/
    printing in OS X Mountain Lion
    http://support.apple.com/kb/HT4670
    Try to delete the print queue under Print & Fax / Print & Scan then manually add a print queue.
    Steps here: http://bit.ly/TdUuHL
    If it doesn't work, reset the printing system:
    http://support.apple.com/kb/HT1341
    then add another print queue manually.

  • When I come from outside and press the home button to turn my iPod on, there is white, light blue and red lines but it is transparent enough that I can see my background, time, etc. It hasn't been water damaged, so that cant be the problem.

    When I come from outside and press the home button to turn my iPod on, there is white, light blue and red lines but it is transparent enough that I can see my background, time, etc. It hasn't been water damaged, so that can't be the problem. I was thinking maybe it is just because of the cold but, I don't like having my iPod doing that whenever I come back from the cold. However, I was in class too and this problem happened but it was inside! So I am very worried, I have dropped my ipod a few times but it hasn't fallen that hard to effect it.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • After a page loads the colors are right, then it suddenly turns light blue and the text fades to gray

    When I open google, the page immediate comes up right with a white background, and black text. Before the page finishes though, the background turns to light blue, and the text turn gray. The logos show up right framed in the white background but the rest of the page is light blue. It happens in other websites as well. There backgrounds are right, but where the text is located is like in forums the text is grayed out, and there background colors are faded too.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Why has my Firefox suddenly become a light blue & see through @ the top?

    I just migrated from Win XP to Win 7 and my Firefox and Thunderbird are now a light blue color and Firefox is see through at the top. I would like to be able to change the color. This light blue/white is hard to watch. I'm running FireFox ver. 30 & Thunderrbird ver. 24.6.0.

    The appearance of Windows 7 is drastically different than Windows XP. You can try looking in themes for something to make Firefox look more like it did on XP https://addons.mozilla.org/en-US/firefox/complete-themes/

  • Can hardly read tiny font on my Juno email page and can't find how to change font size or color, which is light blue.

    That's it in a nutshell. I never had this problem with IE, but when I changed to Firefox suddenly there's all my emails listed in tiny blue font. Can't find anything on the Address Bar to change it.
    When I open the emails, they're fine--but the page listing them is awful. And light blue font on white background makes reading it more painful on the eyes.

    My wife had the same problem. Click on the tools icon in your web browser and go to the "zoom" feature. You can adjust the font size there.

  • Blue Background Login Screen Problem

    Hello everyone,
    I tried to change my login screen's background using sudo commands and now it's this light blue and I can't seem to change it no matter what method I try.
    This is the method that messed everything up:
    http://www.macosxhints.com/article.php?story=20070610164328933
    I looked in my computers login plist as well as my CoreServices folder to make sure that the login image is the image I want and they both have the correct folder down. Has anyone had this problem and fixed or helped someone fix this?
    This is a purely aesthetic problem but it's really, really getting to me. It's almost to the point where I'm trying to revert to an older time on my computer (Time Machine?).
    If someone could please help, it would be greatly appreciated.

    I found the solution to this problem on another forum. If anyone finds this, this is what you do:
    Delete the com.apple.loginwindow.plist that you can find in the /Library/Preferences folder. After this I recommend using an Application to set your backround (so that you aren't fiddling with things yourself). You can either use Desktop 2 Login or Login Back -- either work. Anyways, I'd back up your plist file before you delete just incase. This worked for me and hopefully it works for you.
    --Travis

Maybe you are looking for