Whatdoes it mean when the project I open has a red screen with different languages,media off line?

I finished my movied. and then tried to move everything into a new file labeled TAJE files.  Now when I try to open the last version of the movie, I get nothing but 2 of the title clips and then every clip is a red one with different languages saying something about media off line?  I deleted old copies but thought that was ok?
Pam

Yes, if you have a completed DVD and just want to copy it then use disk burning software, not PRE. I use Nero and ImgBurn as my main burning applications - Nero is commercial, ImgBurn is free.
If you want to make extra copies over time you would be better to copy the VIDEO_TS folder from your DVD to your Hard Disk and then point ImgBurn at the folder.
For new projects requiring multiple DVDs to be burnt you would be better during Share to burn it to disk. Again, once it's there you can just point ImgBurn at it.
Cheers,
Neale
Insanity is hereditary, you get it from your children

Similar Messages

  • The Facebook app icon has a red circle with a number that increases wiyh each phone call.  How do I clear that's?

    TThe Facebook app icon has a red circle with  number that increases every time my phone rings.  How do I clear it?

    The Facebook app - or do you mean the Facetime app? The Facetime app will show all of the incoming phone calls if you are using the iPad for iPhone Cellular Calls. Settings>Facetime>iPhone Cellular Calls>On.

  • 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 it mean when trying to startup I get a grey screen with a box with a question mark flashing

    My wife was getting the circling pinwheel so she shut down her MacBook Pro. When she started it back up we got the flashing box with a qestion mark in it. It will do that for a while then shut off.
    Any suggestions?

    It usually is a sign that the MBP cannot locate the OSX.  Either the HDD needs attention or the connection to the HDD has failed.  You will need the original installation disks to address the HDD for repair or if you MBP came with Lion or later, boot to the recovery partition and see if the HDD can be repaired.
    Ciao.
    Use this link as an aid in resolving the problem:
    https://discussions.apple.com/docs/DOC-5281
    Message was edited by: OGELTHORPE

  • I have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    i have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • How to prevent a TCP connection being closed when the VI that opened it finishes.

    Hello everyone.
    I am developing an application based around servers and clients communicating over TCP in LabVIEW 2012.
    When the server/client opens a TCP connection ,it launches an asynchronosly running "connection handler", to which it passes the connection reference which then takes over all the communcation. This all works fine.
    However - I have a situation where a client's connection handler can be informed of another "new" server. I would like it to open the connection (to see if it is still valid) and then pass this connection reference back to the client's main code to spawn a new connection handler. This prevents me locking up the Client's main code with a long-ish timeout if the "new" server is not actually accepting connections.
    The issue is that if the connection handler that opened up the connection to the "new" server is stopped, then it appears to destroy the reference that it opened. This means that the other connection handler that was merrily communcating with the "new" server has its TCP communciations closed (I get an Error code 1 on a write).
    I have created an example to demonstrate the issue which should be used as follows:
    1. Run server.vi - it will listen for a connection on the port specifed on its BD.
    2. Run CH Launcher.vi - it will open a connection to the server and pass the TCP reference to an instance of Connection Handler.vi which it launches.
    3. The Connection Handler should send data to the Server
    4. Stop the CH Launcher.vi
    5. The Connection Handler.vi will error.
    Any suggestions would be much appreciated.
    Cheers
    John
    Solved!
    Go to Solution.
    Attachments:
    TCP Test.zip ‏35 KB

    John_Neutron escreveu:
    In my case I have changes the part of the code that opens the TCP connection to a VI that has the same lifetime as the main VI so that any connections that have been opened will only be closed automatically when the main VI stops.
    And what are the effects? You are still facing the same problem or closing the connection only when the whole applicaton stops solved your problem?
    Regards
    Mondoni

  • Adobe reader xi i am running 2 display screens and when i have a file open and go to print the print page opens on my second screen.  How can I get adobe reader to just display on one screen?

    adobe reader xi i am running 2 display screens and when i have a file open and go to print the print page opens on my second screen.  How can I get adobe reader to just display on one screen?
    I want the capability of adobe reader to just run on one screen.

    I had the same problem.
    Try this.
    https://igppwiki.ucsd.edu/groups/publichelpwiki/wiki/a1538/Howto_Disable_Acrobat _as_the_Safari_PDF_Viewer.html

  • Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?

    Is there a way to play an mp4 file at the beginning of a published project only when the project is accessed from a specific site?
    A little background info. I use Captivate 7 and currently have over 100 projects that I maintain on a quarterly basis. I publish using the SWF format and upload the swf/htm files to a server where they are then accessed from a few locations (within our online documentation, in our software product, on two different websites). Many of the projects are linked so some will be viewed as a series and others viewed as a standalone video. Each video uses the same template and includes an intro and end slide. Now my organization wants to implement a new intro to all videos (those I publish and those from several groups across the organization). My current intros provide overview material for the specific video so the new intro, which is an animation with audio in mp4 format, would need to be placed at the start of each project. The issue is, the intro adds 9 seconds to every video and in many cases doesn’t add any value (say, if a user accesses the video from within our product or views the videos as a series). I’ve talked it over with my boss and we want to try to add the intro only to videos accessed from site X, not any other location. So now to my question. Is there a way to play an external mp4 file (intro) only when the published project is accessed from a specific site, therefore eliminating the need to update each project? Maybe there's a way to add a parameter or variable to the URL or the html code?
    Thanks in advance for your suggestions. Please let me know if you need additional information.

    AimeeLove,
    I have a solution for you.  You may have to modify the code a little bit based on how long the timeline animation is for your clock.  I based mine on 3 seconds to complete a minute hand sweep around the clock.
    Milliseconds for each point on the clock:
    12 = 0
    1 = 250
    2 = 500
    3 = 750
    4 = 1000
    5 = 1250
    6 = 1500
    7 = 1750
    8 = 2000
    9 = 2250
    10 = 2500
    11 = 2750
    In the mouseover section for 12 o' clock, put this code...
    myVar = setInterval(function(){
         var pos = sym.getPosition();
         if (pos > 0 && pos < 50){
              sym.stop(0);
              clearInterval(myVar);
    },10);
    When you point to the time, the setInterval method loops every 100th of a second and checks the current position of the timeline.  When the timeline reaches the range between 0 and 50 milliseconds (almost impossible to hit 1 specific point), the timeline will stop at 0.  Also, the clearInterval will be fired to stop the loop.
    In the mouseout section, put this...
    sym.play();
    clearInterval(myVar);
    It start the clock again, and it also clears the loop in case you mouseout before you reach the range.
    Make sure that myVar is a global variable so you can clear it from the mouseout section.
    Repeat this for each point on the clock.  To avoid potential conflicts, you may want to use my12, my1, my2, etc. instead of myVar.  I put the milliseconds at the top that you would use as the beginning of the range.  50 milliseconds should be enough to catch it.  So, for 5 o' clock, you would make your range between 1250 and 1300.
    Let me know if you have any questions.  Thanks!
    Fred

  • Can I send an e-mail in Mail and get a receipt when the email is opened?

    Can I send an email via Mail and be notified when the email is opened by the recipient? If so, how?

    If you click on the person's name, you go to the public profile they have posted.  If there is an email address given you can email directly.  If not, you cannot email the person directly.
    You could post a reply to the persons reply on the communities to note their help.

  • Why are most of the apps (anything that has to search) on my iphone4 and ipad (1) running very slow (or not at all) since iOS5 update...esp google. Search seems to go quickly, but then when I try to open a link..nothing. I have turned off icloud.

    why are most of the apps (anything that has to search) on my iphone4 and ipad (1) running very slow (or not at all) since iOS5 update...esp google. Search seems to go quickly, but then when I try to open a link..nothing. I have turned off icloud.

    I am having the same problem. Did turning off iCloud work? Did you just turn everything off or did you actually delete the account off your iPod?

  • I have a fillable form that we send to contractors - when the form is opened on a computer the contractor can view the fields we have completed, however when viewing from a mobile device or cell phone those fields appear blank. Any suggestions? I am at a

    when the form is opened on a computer the contractor can view the fields we have completed, however when viewing from a mobile device or cell phone those fields appear blank. Any suggestions? I am at a total loss as it works when viewing from the computer. I am assuming it is a setting or maybe we need to save it a special way?

    What version of Reader are they using, exactly? And are you sure they're
    using Reader itself and not opening the file inside a browser window, for
    example?
    On Fri, Feb 6, 2015 at 5:24 PM, jessicao96457206 <[email protected]>

  • Creating a pop-up in Acrobat X that is triggered when the PDF is opened.

    Hello all,
    I am wanting to create  a pop-up that is triggered when the PDF is opened.
    The problem I am facing is that our customers are filling out the packet , but are not using the purple "Submit" button located at the top of the page to submit the form to us. They are instead printing out the form and faxing it to us, or scanning and emailing the packet, which defeats the whole purpose of it being a fillable, distributed pdf.
    The email invitation that they receive is a bit wordy so I have have pared that down as well. To be honest with the amount of "Read this first" pop ups that we are exposed to daily I think that our customers are simply not reading the instructions properly.
    There was a post here in the forums but the expanation was for Acrobat 7 or 8.
    Any help is appreciated.

    Thank you for the quick response George. I guess a better way communicate what I need to accomplish is "how"
    I went to the toolbar on the right, then "javascript", then "Document Java Scripts". That opened a window that had me name the script, then add it, then put in the scripting (see below). I do not know how to "place it in a document-level JavaScript (outside of a function definition) or in the initial page's Page Open event."
    This is the script I am attempting to use.
    var message = "When you have completed filling out the Tax Organizer, click on the purple "SUBMIT" button at the top of the page. This will automaticall submit your Tax Organizer for you. Be sure to print a copy for your files"
    app.alert(msg,3);
    If you could provide some step by steps that would be super.
    I am wanting this pop-up box to open and the client will have to then click on the "ok" button to make it dissapear so that they can then fill out the PDF.
    The "Submit" button is auto created for me when I choose to distribute the form, I am unaware of any way to move it.
    I feel that my issue is a elementary one, I am currently working through the Adobe Classroom in a Book lessons as all my acrobat skills have been self taught.

  • What does a file folder with a question mark in it mean when the computer won't start?

    What does a file folder with a question mark in it mean when the computer won't start?

    There are four general causes of this issue:
    1. The computer's PRAM no longer contains a valid startup disk setting when there aren't any problems with the disk itself. This can be checked for by pressing the Option key and seeing if the drive appears.
    2. The internal drive's directory structure has become damaged. This requires usage of an alternate bootable system to perform the repair.
    3. Critical system files have been deleted. This requires usage of an alternate bootable system to reinstall them.
    4. The internal drive has died or become unplugged. This is the most likely case if the computer took a sharp impact or there are unusual sounds coming from the hard drive's location.
    (68976)

  • My Macbook Pro (5,3) sporadically goes to sleep when the lid is open and in use.

    My Macbook Pro (5,3) sporadically goes to sleep when the lid is open and I am actively using it.  This problem happens both with OS X 10.7.2 and Windows 7 (64bit), so I don't think it's an OS issue.  Has anyone else encountered this? It's still covered under apple care... But I'd rather try to fix it myself before having to bring it in.
    Thanks!

    I wouldn't be surprised if this were the case - it does get hot.  However, this happens even when I first open it after having it in sleep mode for an entire night...  Do you know how to run the diag tool with OS X 10.7?

  • RoboHelp x5 TOC and index missing when the project is converted to RoboHelp 10

    As the title says, RoboHelp x5 TOC and index missing when the project is converted to RoboHelp 10. Any ideas for recovering or importing the x5 TOC and index?
    Before this is suggested, auto-create is not an option.

    Hi there
    Perhaps give this a try. From the Project Manager pod, right-click the Table of Contents area and choose "New Table of Contents". Give it a name and enable the "Copy existing Table of Contents" check box. Then click the Ellipsis icon on the far right side. See if you have a .HHC file in the folder. Odds are, you will. That will be the existing (missing) TOC.
    Hopefully that will work. If so, repeat the process for the index.
    I think when upgrading the project something goes wrong with naming.
    Let us know if this helps... Rick

Maybe you are looking for