Urgent where i put this code for delete

hi master
sir this code is right for my requirment but when i put on_delete event system not respons or not delete record
where i put this code for conditional deletion
this is my code
declare
     recno number;
begin
if :system.cursor_block='accbal' then
delete accbal where accid=:chartofacc.accid;
     go_block('chartofacc');
     next_record;
elsif :system.cursor_block='chartofacc' then
     select count(*) into recno from accbal where accid=:chartofacc.accid;
     if recno=0 then
     delete_record;
     go_block('chartofacc');
     previous_record;
     else
     message ('system found matching record then no delete master record');
     message ('system found matching record then no delete master record');
     end if;
end if;
end;
please gide me which event i use
thanking you
aamir

Hello,
The ON-DELETE triger fires only after a COMMIT statment and only for those records that have been deleted in the block.
Francois

Similar Messages

  • Where to put the code for dynamically change  dataprovider

    I have a table bound to dataprovider1 by default ( by the SJC ). In the same page, I also have a dataprovider2 which is for the same fields of the same table of dataprovider1. The only different is to put some criteria on one field ( like F_D1 = '5' ) so that one provider will show all rows, the other just some rows.
    The code to change the dataprovider is as follows :
    tableRowGroupWorksheet.setValueBinding("sourceData", getApplication().createValueBinding("#{WorksheetPage.dataprovider2}") );
    If I put this code into some button_action() and then I click that button, then the page displays the corresponding data just fine.
    But if I put this code in either preprocess or prerender, then things seems messed up : the number of pages is for data of dataprovider1, but when I click button Next of the table then it shows the number of pages of dataprovider2. ( I also try to put it in init but this does not help either ).
    I need this code to be run when this page is selected but right now it requires me to click on a button :(
    The reason I need it runs automatically is because of the logic generated from the previous page.
    Thanks for your advive,
    Vu

    After re-reading the life-cycles of JSF and the injected phases of SJC, I think I know why it does not work when the page is first called. In this case, AplyRequestValue phase is skipped therefore preprocess is never called. Also in this case, the component tree, with binding, validators, ... is only built in the Render Response phase and this phase is right after PreRender is called therefore the binding code I put in prerender is overwritten by Render Response.
    When using a button action, the component tree is already built and not rebuit under Render Response, therefore that code is not overwritten. Also in this case, preprocess is called so putting that code under either preprocess or prerender will work.
    Please correct me.
    Thanks,
    Vu

  • Where to put init code for static variables? (for UIImages)

    I know that static variables are sorta a global, is that how UIImage is usually stored? What is the convention to declare UIImage variables that exists throughout the lifetime of the app? Where is a good place to init it if I choose to use static variables?

    OK, in that case do something like this:
    MyClass.m
    #import "MyClass.h"
    static UIImage *classImage;
    @implementation MyClass {
    + (void)initialize {
    classImage = <whatever to load image>;
    Code like the above makes the 'classImage' variable work like a typical class variable. It is available to all instances of MyClass but is not visible to other classes. Like a 'private static' class variable in Java. Nothing goes in the header for this variable.
    The 'initialize' method is called once the first time anything ever references MyClass. Kind of like a static initializer in Java. Notice the use of '+' instead of '-' for the method. The '+' makes it a class method instead of an instance method.
    Does that help?
    Message was edited by: RickMaddy

  • We are using this code for deleting messege but not working ,

    it is only wokring when i only assign value to sub1 variableassign
    <html>
    <body>
    <%@ page language="java" import="java.sql.*" %>
    <%
    String[] list=request.getParameterValues("list");
    // String list=request.getParameter("list");
    int i;
    String sub1;
    for(i=0;i<list.length;i++)
    try
    sub1=list;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:dsn1","","");
    Statement stmt=con.createStatement();
    stmt.execute("delete from mes where sub='"+sub1+"'");
    out.println(sub1);
    stmt.close();
    con.close();
    catch(Exception e)
    {out.println(e);}
    %>
    Click here
    </body>
    </html>

    How to iterate through an array:
    String[] array = getItSomehow();
    for (int i = 0; i < array.length; i++) {
    String item = array;
    // Do your thing with 'item'.
    }Or even better, if you're using at least Java
    1.5:String[] array = getItSomehow();
    for (String item : array) {
    // Do your thing with 'item'.
    ode]
    And I recommend you to connect only once, before the
    loop, to save time and to use PreparedStatement to
    avoid SQL injections. And don't forget to close at
    least the connection, otherwise you're leaking
    resources.it is not deleting any message from database but when i assign value as sub1="something"; then it is deleting but i dont understand why it is so please give me its solution

  • Architecture question...where to put the code

    Newbie here, so please be gentle and explicit (no detail is
    too much to give or insulting to me).
    I'm hoping one of you architecture/design gurus can help me
    with this. I am trying to use good principals of design and not
    have code scattered all over the place and also use OO as much as
    possible. Therefore I would appreciate very much some advice on
    best practices/good design for the following situation.
    On my main timeline I have a frame where I instantiate all my
    objects. These objects refer to movieClips and textFields etc. that
    are on a content frame on that timeline. I have all the
    instantiation code in a function called initialize() which I call
    from the content frame. All this works just fine. One of the
    objects on the content frame is a movieClip which I allow the user
    to go forward and backward in using some navigation controls.
    Again, the object that manages all that is instantiated on the main
    timeline in the initialize() function and works fine too. So here's
    my question. I would like to add some interactive objects on some
    of the frames of the movieClip I allow the user to navigate forward
    and backward in (lets call it NavClip) . For example on frame 1 I
    might have a button, on frame 2 and 3 nothing, on frame 4 maybe a
    clip I allow the user to drag around etc. So I thought I would add
    a layer to NavClip where I will have key frames and put the various
    interactive assets on the appropriate key frames. So now I don't
    know where to put the code that instantiates these objects (i.e.
    the objects that know how to deal with the events and such for each
    of these interactive assets). I tried putting the code on my main
    timeline, but realized that I can't address the interactive assets
    until the NavClip is on the frame that holds the particular asset.
    I'm trying not to sprinkle code all over the place, so what do I
    do? I thought I might be able to address the assets by just
    providing a name for the asset and not a reference to the asset
    itself, and then address the asset that way (i.e.
    NavClip["interactive_mc"] instead of NavClip.interactive_mc), but
    then I thought that's not good since I think there is no type
    checking when you use the NavClip["interactive_mc"] form.
    I hope I'm not being too dim a bulb on this and have missed
    something really obvious. Thanks in advance to anyone who can help
    me use a best practice.

    1. First of all, the code should be:
    var myDraggable:Draggable=new Draggable(myClip_mc);
    myDraggable.initDrag();
    Where initDrag() is defined in the Draggable class. When you
    start coding functions on the timeline... that's asking for
    problems.
    >>Do I wind up with another object each time this
    function is called
    Well, no, but. That would totally depend on the code in the
    (Draggable) class. Let's say you would have a private static var
    counter (private static, so a class property instead of an instance
    property) and you would increment that counter using a
    setInterval(). The second time you enter the frame and create a new
    Draggable object... the counter starts at the last value of the
    'old' object. So, you don't get another object with your function
    literal but you still end up with a faulty program. And the same
    goes for listener objects that are not removed, tweens that are
    running and so on.
    The destroy() method in a custom class (=object, I can't
    stress that enough...) needs to do the cleanup, removing anything
    you don't need anymore.
    2. if myDraggable != undefined
    You shouldn't be using that, period. If you don't need the
    asset anymore, delete it using the destroy() method. Again, if you
    want to make sure only one instance of a custom object is alive,
    use the Singleton design pattern. To elaborate on inheritance:
    define the Draggable class (class Draggable extends MovieClip) and
    connect it to the myClip_mc using the linkage identifier in the
    library). In the Draggable class you can define a function unOnLoad
    (an event fired when myClip_mc is removed using
    myClip_mc.removeMovieClip()...) and do the cleanup there.
    3. A destroy() method performs a cleanup of any assets we
    don't need anymore to make sure we don't end up with all kinds of
    stuff hanging around in the memory. When you extend the MovieClip
    Class you can (additionally) use the onUnLoad event. And with the
    code you posted, no it wouldn't delete the myClip_mc unless you
    program it to do so.

  • Where to put javascript code?

    Hello,
    I am trying to set some columns in a list as "read-only" and is using the following code:
    <script type=”text/javascript”>
    function SetReadOnly()
    var elements=document.getElementById(’4_ctl00_ctl00_TextField’);
    elements.readOnly=true;
    _spBodyOnLoadFunctionNames.push(“SetReadOnly()”);
    </script>
    But I am not sure where to put the code in. Should I put it in the space in Content Editor Web Part,
    or through a link to a txt file, or in "Edit HTML"? I've tried them but none works.
    Thanks a lot!
    Patrick

    You can try this:
    1) Open your Sharepoint List. Go to List edit view.
    2) On right side of Ribbon you will find "Form Web Parts" option as shown in figure.
    3) Choose your List form which you want to edit.
    4) Now you can add web part in new window.
    5) Add Content Editor Web part.
    6) In content editor web part add the path of your "txt" file in which you have written your script, for eg.
    <!DOCTYPE html>
    <html>
    <body>
    <script type=”text/javascript”>
    function SetReadOnly()
    var elements=document.getElementById('4_ctl00_ctl00_TextField');
    elements.readOnly=true;
    _spBodyOnLoadFunctionNames.push("SetReadOnly()");
    </script>
    </body>
    </html>
    I haven't tried this method so I am not sure but hope it works...:D
    ***If my post is answer for your query please mark as answer***
    ***If my answer is helpful please vote***

  • Where to put java code - Best Practice

    Hello. I am working with the Jdeveloper 11.2.2. I am trying to figure out the best practice for where to put code. After reviewing http://docs.oracle.com/cd/E26098_01/web.1112/e16182.pdf it seemed like the application module was the preferred spot (although many of the examples in the pdf are in main methods). After coding a while though, I noticed that there were quite a few libraries imported, and wondered whether this would impact performance.
    I reviewed postings on the forum, especially Re: Access service method (client interface) programmatically . This link mentions accessing code from a backing bean -- and the gist of the recommendations seems to be to use the data control to drag it to the JSF, or use the bindings to access code.
    My interest lies in where to put java code in the first place; In the View Object, Entity Object, and Am object, backing bean.....other?
    I can outline several best guesses about where to put code and the pros and cons:
    1. In the application module
    Pros: Centralized location for code makes development and support more simple as there are not multiple access points. Much like a data control centralizes services, the application module can act as a conduit for different pieces of code you have in objects in your model.
    Cons: Everything in one place means the application module becomes bloated. I am not sure how memory works in java -- if the app module has tons of different libraries are they all called when even a simple query re-execute method is called? Memory hog?
    2. Write code in the objects it affects. If you are writing code that accesses a view object, write it in a view object. Then make it visible to the client.
    pros: The code is accessed via fewer conduits (for example, I would expect that if you call the application module from a JSF backing bean, then the application module calls the view object, you have three different pieces of code --
    conts: The code gets spread out, harder to locate etc.
    I would greatly appreciate your thoughts on the matter.
    Regards,
    Stuart
    Edited by: Stuart Fleming on May 20, 2012 5:25 AM
    Edited by: Stuart Fleming on May 20, 2012 5:27 AM

    First point here is when you say "where to put the java code" and you're referring to ADF BC, the point is you put "business logic java code" in the ADF Business Components. It's fine of course to have Java code in the ViewController layer that deals with the UI layer. Just don't put business logic in the UI layer, and don't put UI logic in the model layer. In your 2 examples you seem to be considering the ADF BC layer only, so I'll assume you mean business logic java code only.
    Meanwhile I'm not keen on the term best practice as people follow best practices without thinking, typically best practices come with conditions and people forget to apply them. Luckily you're not doing that here as you've thought through the pros and cons of each (nice work).
    Anyway, back on topic and off my soap box, as for where to put your code, my thoughts:
    1) If you only have 1 or 2 methods put it in the AppModuleImpl
    2) If you have hundreds of methods, or there's a chance #1 above will morph into #2, split the code up between the AppModuleImpl, ViewImpl and ViewRowImpls. Why? Because your AM will become overloaded with hundreds of methods making it unreadable. Instead put the code where it should logically go. Methods that work on a specific VO row go into the associated ViewRowImpl, methods that work across rows in a VO go into the ViewImpl, and methods that work across VOs in the associated AppModuleImpl.
    To be honest which you ever option you choose, one thing I do recommend as a best practice is be consistent and document the standard so your other programmers know.
    Btw there isn't an issue about loading lots of libraries/imports into a class, it has no runtime cost. However if your methods require lots of class variables, then yes this will have a memory cost.
    On a side note if you're interested in more ideas around how to build ADF apps correctly think about joining the "ADF EMG", a free online forum which discusses ADF architecture, best practices (cough), deployment architectures and more.
    Regards,
    CM.

  • Where to put Validation Code?

    Up until now, Im still having second-thoughts of where to put validation code when setting attributes of an entity.
    Right now I have created lots of custom validators --(implement JbovalidatorInterface) that calls stored procedures to validate the value entered. But sometimes, i just use a ViewObject and query it on the setterAttribute method of the Entity and just manually throw a JboException of the value is invalid based on some business rule.
    Question is, what are the best practices where to put validation codes? do we have to be strict that we always put all validations on Validators or are we free to just throw JboExceptions anywhere on the BC classes' code.
    regards,
    Anton

    1. The reason I have a custom validator and I don't normally use the built in declarative validators is that the error message generated when the validation fails is fixed, only one message. I decided to have create a custom validator is that I need to test a one attribute for many cases in each case should produce a distinct error message. So if I use the built in validators, I would have to create lots of built in validators for that single attribute only. (and i have lots of entities and lots of attributes that needs business rule validation). So, I decided to create a custom validator, that calls the stored procedure, the stored procedure takes care of all test cases, for that attribute only, and I can return a dynamic error message depending on the test case that failed. What do you think about the approach?
    It's a little extra work to create a reusable validator class that will only be used once, but whether you do it that way or encapsulate the call in a helper class that your one-off method validator code delegates too, it seems similar to me. So it's more of a stylistic choice for you which you like better. Now, if your reusable validator were enable to encapsulate
    2. When I said anywhere; I meant inside the setterAttribute methods on the Entity and on the ViewRowImpl, orThe ViewImpl class or inside a method on an ApplicationModule?
    Rather than writing code in the setAttribute, I recommend using attribute-level method validators. This makes it more clear where all your validation code lives.
    I don't recommend performing validation in the view object level since entity objects are the component in the system that are tasked with handling validation. It would be easy to circumvent view level validation checks unless you make a lot of assumptions about exactly how your application is working.
    3. One other issue is that Validator methods are for validation purposes only. So its not a good idea to put in attribute setters to other attributes inside there. So you put the attribute setter logic outside of the validator usually inside the setAttribute() just after validator returns. But there are cases that is very straightfoward to put validation logic inside the setAttribute; meaning, inside the setAttribute() method, I test for a condition, if it fails, just throw a JboException, if its true, continue with the otherAttributes setter logic.
    Whether attribute setting of other attributes is performed in a setter method or in an attribute-level method validator, either way you will need conditional logic to avoid going into a validation "loop" (which eventually will throw an exception if after 10 attempts the object is still not valid at posting time.

  • T-code for delete file from application server

    Hi all!
    Please, has any t-code for delete file from application server? For upload exist CG3Z, for download has CG3Y. And for delete? Has anyone?
    I need to delete file from application server in QA system and i don't want to create a program for this because i will need to transport a request from DEV to QA.

    I don't have contact with basis team.
    The FM EPS_DELETE_FILE support directory name with max 60 char. My dir. has more than that. I need a transaction for this.
    Anybody know if this transaction exist?

  • Any event in lov where I put my code

    hi master
    Sir
    Any event in lov where I put my code
    Such as after selection value my curser move to next text box and total all bill amount
    For example
    When press enter
    Begin;
    Select sum(billamount) into :billamount from billtable where clientno=:lov.values;
    End;
    Please give me idea
    Thanking you
    Aamir

    KEY-LISTVAL trigger:
    if Show_LOV(<yuo_lov_name>)
    then
    Select sum(billamount) into :billamount from billtable
    where clientno=:<CONTROL.values>;
    end if;
    <CONTROL.values> is a LOV returning item(s)

  • FSCM 9.0 - Customer: where to create "Team Code" for  "General Infor" page?

    Folks,
    Hello. I am creating a new Customer using "FSCM>Customers>Customer Information>General Information". On "General Infor" page, "Support Team - Team Code" is required field. I don't know where to create "Team Code" to be prompted on this page.
    Do any folks understand where to create "Team Code" for "General Infor" page ?

    Did you ever come up with a way to workaround this problem. This problem just bit me over the weekend.

  • I create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    i create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    The code they are asking for is the last three digits of the number on the back of the card (you don't use this when using an ATM or presenting the card in shops).

  • Where can i get code for EJB

    hi
    please tell me where can i get code for EJB 's to create applications

    georgemc wrote:
    sunil.varma wrote:
    hi
    please tell me where can i get code for EJB 's to create applicationsCould you make your question more vague pleasehai mr. george.
    ejb codez.
    iz it good?

  • Where is java source code for TitledBorder

    Where is java source code for TitledBorder?
    I don't want to decompile it, as it may be slightly different than the original.
    Is it in some jar file on my computer?
    Thanks

    It's different from the original because the names of objects are different. I decompiled them, because I didn't feel like paging through that URL to find them.
    I was trying to fix the TitledBorder, because it leaves like 2 pixels of padding outside of the border, but all the variables I change in that class don't seem to correct that.

  • Where shall I put this code?

    Having problems adding the following code:
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery-1.4.2.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.core.min.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.widget.min.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.tabs.min.js" type="text/javascript"></script>
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.core.css" rel="stylesheet" type="text/css" />
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.tabs.css" rel="stylesheet" type="text/css" />
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.theme.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    /* BeginOAWidget_Instance_2140022: #jQueryTabs */
    #jQueryTabs.ui-tabs .ui-tabs-panel {
              display: block;
              border: 0px solid #aaaaaa;
              padding: 1ex 1.4em;
              background: #003366;
              font-family: inherit;
              font-size: 0.8em/*{fsDefault}*/;
    /* Component containers
    #jQueryTabs .ui-widget {
    #jQueryTabs .ui-widget-content {
              border: 1px solid #aaaaaa/*{borderColorContent}*/;
              background: #ffffff/*{bgColorContent}*/ url()/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;
              color: #ffffff/*{fcContent}*/;
    #jQueryTabs .ui-widget-content a {
              color: #0000ff/*{fcContent}*/;
    #jQueryTabs .ui-widget-header {
              border: 1px solid #aaaaaa/*{borderColorHeader}*/;
              background: #000066/*{bgColorHeader}*/ url()/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/;
              color: #222222/*{fcHeader}*/;
              font-weight: bold;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 0.8em/*{fsDefault}*/;
    /* Interaction states
    #jQueryTabs .ui-state-default, .ui-widget-content .ui-state-default {
              border: 1px solid #ffffff/*{borderColorDefault}*/;
              background: #003366/*{bgColorDefault}*/ url()/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #555555 /*{fcDefault}*/;
    #jQueryTabs .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
              color: #ffffff/*{fcDefault}*/;
              text-decoration: none;
    #jQueryTabs .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus {
              border: 1px solid #999999/*{borderColorHover}*/;
              background: #ff9900/*{bgColorHover}*/ url()/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #212121 /*{fcHover} #212121*/;
              font-family: inherit;
              font-size: inherit/*{fsHover}*/;
    #jQueryTabs .ui-state-hover a, .ui-state-hover a:hover {
              color: #212121/*{fcHover}*/;
              text-decoration: none;
    #jQueryTabs .ui-state-active, .ui-widget-content .ui-state-active {
              border: 1px solid #aaaaaa/*{borderColorActive}*/;
              background: #ff6600/*{bgColorActive}*/ url()/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #212121/*{fcActive}*/;
              font-family: inherit;
              font-size: inherit/*{fsSelected}*/;
    #jQueryTabs .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
              color: #212121/*{fcActive}*/;
              text-decoration: none;
    /* EndOAWidget_Instance_2140022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2140022" binding="#jQueryTabs" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2140022: #jQueryTabs
              $(function() {
          $("#jQueryTabs").tabs({
                        event:"click",
                        collapsible: false,
                        selected:'0',
                        fx: { opacity: 'none', duration: 1 }
            }).tabs( "none" , 1 , false );
    // EndOAWidget_Instance_2140022
    </script>
    <div id="jQueryTabs">
      <ul>
        <li><a href="#tabs-1">Nunc tincidunt</a></li>
        <li><a href="#tabs-2">Proin dolor</a></li>
        <li><a href="#tabs-3">Aenean lacinia</a></li>
      </ul>
      <div id="tabs-1">
        <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
      </div>
      <div id="tabs-2">
        <p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
      </div>
      <div id="tabs-3">
        <p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
        <p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
      </div>
    </div>
    </body>
    </html>
    I am trying to add it to the index.html page (where it says nbsp...)
    <p>nbsp;</p></td>  (add an "&" symbol before nbsp and CTRL + F to find it in the below code)
    Code for index.html is
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta name="generator" content="HTML Tidy for Linux (vers 6 November 2007), see www.w3.org" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    /*<![CDATA[*/
    .style1 {
            font-family: Verdana, Geneva, sans-serif;
            font-size: 10px;
            color: #000;
            background-color: #e3e3e3;
            margin: 0px;
            padding: 0px;
    body,td,th {
            font-size: 11px;
    /*]]>*/
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    #apDiv1 {
              position:absolute;
              width:200px;
              height:115px;
              z-index:1;
              left: 1048px;
              top: 376px;
    #apDiv2 {
              position:absolute;
              width:272px;
              height:115px;
              z-index:2;
              left: 764px;
              top: 456px;
    body,td,th {
              color: #F00;
    body {
              background-repeat: repeat-x;
    </style>
    <link href="Spry-UI-1.7/css/ContentSlideShow/wanderlust/wanderlust-brown.css" rel="stylesheet" type="text/css" />
    <script src="Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSelector.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryContentSlideShow.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="141" binding="#ImageSlideShow" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_2" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_3" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_4" />
      <oa:widget wid="2567023" binding="#OAWidget" />
    </oa:widgets>
    -->
    </script>
    <link href="SpryAssets/SpryStackedContainers.css" rel="stylesheet" type="text/css" />
    <!-- InstanceEndEditable -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript">
    </script>
    <script src="includes/jquery-1.4.2.js" type="text/javascript">
    </script>
    <script src="jQuery/js/jquery.jsocial.js" type="text/javascript">
    </script>
    <link href="jQuery/css/style.css" rel="stylesheet" type="text/css" />
    <script type="text/xml">
    <![CDATA[
    <!--
    <oa:widgets>
      <oa:widget wid="2149023" binding="#social" />
    </oa:widgets>
    -->
    ]]>
    </script>
    <style type="text/css">
    /*<![CDATA[*/
    body.c9 {background-color:#e3e3e3}
    table.c8 {background-color: #E3E3E3}
    p.c7 {color: #c3c3c3; font-size: 14px; text-align: center}
    p.c6 {text-align: center}
    table.c5 {background-color: #FFFFFF}
    table.c4 {background-color:#FFFFFF}
    table.c3 {font-size: 14px}
    tr.c2 {background-image:url(images/img02.jpg)}
    div.c1 {text-align: center}
    /*]]>*/
    </style>
    </head>
    <body class="c9">
    <table width="740" align="center">
    <tr>
    <td width="740">
    <div class="c1"><object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="709" height="202"><param name="movie" value="images/banner.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="images/banner.swf" width="709" height="202"><!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>--></object> <!--<![endif]--></object></div>
    </td>
    </tr>
    </table>
    <table class="c3" width="950" align="center" cellpadding="0" cellspacing="0">
    <tr class="c2" align="center">
    <td width="100"><a href="index.html">Home</a></td>
    <td width="100"><a href="About%20Us.html">About Us</a></td>
    <td width="100"><a href="Flights%20and%20Timetables.html">Flights &amp; Timetables</a></td>
    <td width="100"><a href="Manage%20My%20Bookings.html">Manage My Booking</a></td>
    <td width="100"><a href="Hotels.html">Hotels</a></td>
    <td width="100"><a href="FAQs.html">FAQs</a></td>
    <td width="100"><a href="Careers.html">Careers</a></td>
    <td width="100"><a href="Contact%20Us.html">Contact Us</a></td>
    </tr>
    </table>
    <table align="center" width="950" class="c4" cellpadding="0" cellspacing="0">
    <tr>
    <td>
    <table align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td width="950" height="500" align="left" valign="top"><!-- InstanceBeginEditable name="Content" -->
          <table width="178" border="5" align="left">
            <tr>
              <td height="23" colspan="3" align="left" valign="top" nowrap="nowrap" bgcolor="#FF6600"><h3>Create a Trip </h3></td>
            </tr>
            <tr>
              <td width="160" height="686" colspan="3" align="left" valign="top" bgcolor="#003366"><h3>
                <input type="radio" name="radio" id="radio" value="radio" />
                Flights<br />
                <input type="radio" name="radio" id="radio2" value="radio" />
                Hotels </h3>
                <h3>Country of Departure
                  <label for="select"></label>
                  <br />
                  <select name="select" id="select">
                    <option>United Kingdom</option>
                    <option>Spain</option>
                    </select>
                </h3>
                <h3>From<br />
                  <label for="select2"></label>
                  <select name="select2" id="select2">
                    <option>London</option>
                    <option>Nottingham</option>
                    <option>Birmingham</option>
                    </select>
                </h3>
                <h3>To<br />
                  <label for="textfield"></label>
                  <input type="text" name="textfield" id="textfield" />
                </h3>
                <h3>Depart<br />
                  <input name="DD/MM/YY" type="text" id="DD/MM/YY" value="DDMMYY" maxlength="6" />
                  <label for="checkbox"></label>
                  One Way Only
                  <input type="checkbox" name="checkbox" id="checkbox" />
                  <br />
                  <br />
                  Return<br />
                  <input name="DD/MM/YY2" type="text" id="DD/MM/YY2" value="DDMMYY" maxlength="6" />
                  My dates are fixed
                  <input type="checkbox" name="checkbox2" id="checkbox2" />
                </h3>
                <h3>Flight Class<br />
                  <select name="select3" size="1" id="select3">
                    <option>Economy</option>
                    </select>
                </h3>
                <h3>Ticket Type<br />
                  <input type="radio" name="radio3" id="radio3" value="radio3" />
                  <label for="radio3"></label>
                  Lowest Price<br />
                  <input type="radio" name="radio3" id="radio4" value="radio3" />
                  Flexible Conditions          </h3>
                <h3>Adults<br />
                  <select name="select4" size="1" id="select4">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                    </select>
                  <br />
                  <br />
                  Children <br />
                  <select name="select5" size="1" id="select5">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                    </select>
                </h3>
                <h3 align="left">Infants<br />
                  <select name="select6" size="1" id="select6">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                  </select>
                  <br /></h3>
                  <div align="right">
                    <input type="submit" name="Get Flights" id="GetFlights" value="Get Flights"/>
                  </div></td>
            </tr>
            </table>
          <table width="539" border="0" align="left" cellpadding="1" cellspacing="1">
            <tr valign="top">
              <td colspan="3" align="center" valign="top"><div id="ImageSlideShow">
                <div class="article">
                  <div class="photo">
                    <div class="caption">
                      <div id="ImageSlideShow_2">
                        <div class="article">
                          <div class="photo">
                            <div id="ImageSlideShow_3">
                              <div class="article">
                                <div class="photo">
                                  <script type="text/javascript">
                                  </script>
                                  <div id="ImageSlideShow_4">
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg1.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">San Francisco, CA</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Palace of Fine Arts</div>
                                          <div class="subTitle">Flowers of Spring, California</div>
                                          </div>
                                        <div class="content">
                                          <p>The Palace of Fine Arts was initially built for the Pan-Pacific Exposition in the 1930s, heralding San Francisco's rebirth after the 1906 earthquake.</p>
                                          <button type="button"><span><span><span>Click for Details</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg2.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">Horses</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Marin County, California</div>
                                          <div class="subTitle">Bay Area's  Best Secret</div>
                                          </div>
                                        <div class="content">
                                          <p>A few short miles from downtown San Francisco, horses roam in the fields of Marin County, California.</p>
                                          <button type="button"><span><span><span>More Info</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg3.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">Open Space</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Marin County</div>
                                          <div class="subTitle">Parkland</div>
                                          </div>
                                        <div class="content">
                                          <p>Marin County is blessed with acres of open spaces, both public and private. </p>
                                          <button type="button"><span><span><span>Get Packing!</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg4.jpg" alt="" width="300" height="300" />
                                      <div class="caption">Orchids</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Flower Garden</div>
                                          <div class="subTitle">Flora tour in Golden Gate Park</div>
                                          </div>
                                        <div class="content">
                                          <p>Orchids from all over the world can be seen in the Arboretum in Golden Gate Park.</p>
                                          <button type="button"><span><span><span>Find out More!</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    </div>
                                  <script type="text/javascript">
    // BeginOAWidget_Instance_2141541: #ImageSlideShow_4
    var ImageSlideShow_4 = new Spry.Widget.ContentSlideShow("#ImageSlideShow_4", {
              widgetClass: "WLBSlideShow",
              displayInterval: 4000,
              transitionDuration: 2000
    // EndOAWidget_Instance_2141541
                                  </script>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div></td>
            </tr>
            <tr valign="top">
              <td colspan="3" align="center" valign="top" bgcolor="#000033">Discover the latest offers</td>
              </tr>
            <tr valign="top">
              <td align="center" valign="top" bgcolor="#CC9900"><img src="images/hpimg6.jpg" width="150" height="150" vspace="0" border="1" /></td>
              <td align="center" valign="top" bgcolor="#0000FF"><img src="images/hpimg7.jpg" alt="" width="150" height="150" vspace="0" border="1" /></td>
              <td align="center" valign="top" bgcolor="#666666"><img src="images/hpimg8.jpg" alt="" width="150" height="150" vspace="0" border="1" /></td>
            </tr>
            <tr valign="top">
              <td width="200" align="center" valign="top" bgcolor="#CC9900">Last Minute Offers</td>
              <td width="200" align="center" valign="top" bgcolor="#0000FF">Luxury Holidays</td>
              <td width="200" align="center" valign="top" bgcolor="#666666">Most Popular Holidays</td>
            </tr>
            <tr valign="top">
              <td colspan="3" bgcolor="#FFFFFF">
              <p> </p></td>
              </tr>
            </table>
          <table width="178" border="1" align="right">
            <tr>
              <td width="160" height="686" colspan="3" align="left" valign="top" bgcolor="#FFFFFF">news feed
                <script type="text/javascript">
              </script></td>
            </tr>
    </table>
      <!-- InstanceEndEditable --></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <table class="c5" align="center" width="950">
    <tr>
    <td></td>
    </tr>
    </table>
    <table class="c8" align="center" width="950">
    <tr>
    <td>
    <p class="c6"><strong><a href="index.html">Home</a> | <a href="Terms%20and%20Conditions.html">General Terms &amp; Conditions</a> | <a href="FAQs.html">FAQs</a> | Contact Us | Site Map. This website is only for my college work, none of the content is accruate</strong><strong><br /></strong></p>
    <div class="social"></div>
    <script type="text/javascript">
    //<![CDATA[
    // BeginOAWidget_Instance_2149023: #social
            $('.social').jsocial({
                            facebook        :  'facebook.com/myID',
                            twitter         :  'myID',
                            center          : true,
                            inline          : true,
                            small           : true,
                            newPage         : false
    // EndOAWidget_Instance_2149023
    //]]>
    </script>
    <p class="c6"><strong><br /></strong></p>
    <p class="c7"> </p>
    </td>
    </tr>
    </table>
    <script type="text/javascript">
    //<![CDATA[
    swfobject.registerObject("FlashID");
    //]]>
    </script>
    </body>
    <!-- InstanceEnd --></html>

    Having problems adding the following code:
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery-1.4.2.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.core.min.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.widget.min.js" type="text/javascript"></script>
    <script src="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/includes/jquery.ui.tabs.min.js" type="text/javascript"></script>
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.core.css" rel="stylesheet" type="text/css" />
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.tabs.css" rel="stylesheet" type="text/css" />
    <link href="file:///C|/Users/All/AppData/Roaming/Adobe/Dreamweaver CS5.5/en_US/Configuration/Temp/Assets/eam1162.tmp/jQuery/css/jquery.ui.theme.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    /* BeginOAWidget_Instance_2140022: #jQueryTabs */
    #jQueryTabs.ui-tabs .ui-tabs-panel {
              display: block;
              border: 0px solid #aaaaaa;
              padding: 1ex 1.4em;
              background: #003366;
              font-family: inherit;
              font-size: 0.8em/*{fsDefault}*/;
    /* Component containers
    #jQueryTabs .ui-widget {
    #jQueryTabs .ui-widget-content {
              border: 1px solid #aaaaaa/*{borderColorContent}*/;
              background: #ffffff/*{bgColorContent}*/ url()/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;
              color: #ffffff/*{fcContent}*/;
    #jQueryTabs .ui-widget-content a {
              color: #0000ff/*{fcContent}*/;
    #jQueryTabs .ui-widget-header {
              border: 1px solid #aaaaaa/*{borderColorHeader}*/;
              background: #000066/*{bgColorHeader}*/ url()/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/;
              color: #222222/*{fcHeader}*/;
              font-weight: bold;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 0.8em/*{fsDefault}*/;
    /* Interaction states
    #jQueryTabs .ui-state-default, .ui-widget-content .ui-state-default {
              border: 1px solid #ffffff/*{borderColorDefault}*/;
              background: #003366/*{bgColorDefault}*/ url()/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #555555 /*{fcDefault}*/;
    #jQueryTabs .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
              color: #ffffff/*{fcDefault}*/;
              text-decoration: none;
    #jQueryTabs .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus {
              border: 1px solid #999999/*{borderColorHover}*/;
              background: #ff9900/*{bgColorHover}*/ url()/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #212121 /*{fcHover} #212121*/;
              font-family: inherit;
              font-size: inherit/*{fsHover}*/;
    #jQueryTabs .ui-state-hover a, .ui-state-hover a:hover {
              color: #212121/*{fcHover}*/;
              text-decoration: none;
    #jQueryTabs .ui-state-active, .ui-widget-content .ui-state-active {
              border: 1px solid #aaaaaa/*{borderColorActive}*/;
              background: #ff6600/*{bgColorActive}*/ url()/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/;
              font-weight: normal/*{fwDefault}*/;
              color: #212121/*{fcActive}*/;
              font-family: inherit;
              font-size: inherit/*{fsSelected}*/;
    #jQueryTabs .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
              color: #212121/*{fcActive}*/;
              text-decoration: none;
    /* EndOAWidget_Instance_2140022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2140022" binding="#jQueryTabs" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2140022: #jQueryTabs
              $(function() {
          $("#jQueryTabs").tabs({
                        event:"click",
                        collapsible: false,
                        selected:'0',
                        fx: { opacity: 'none', duration: 1 }
            }).tabs( "none" , 1 , false );
    // EndOAWidget_Instance_2140022
    </script>
    <div id="jQueryTabs">
      <ul>
        <li><a href="#tabs-1">Nunc tincidunt</a></li>
        <li><a href="#tabs-2">Proin dolor</a></li>
        <li><a href="#tabs-3">Aenean lacinia</a></li>
      </ul>
      <div id="tabs-1">
        <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
      </div>
      <div id="tabs-2">
        <p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
      </div>
      <div id="tabs-3">
        <p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
        <p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
      </div>
    </div>
    </body>
    </html>
    I am trying to add it to the index.html page (where it says nbsp...)
    <p>nbsp;</p></td>  (add an "&" symbol before nbsp and CTRL + F to find it in the below code)
    Code for index.html is
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta name="generator" content="HTML Tidy for Linux (vers 6 November 2007), see www.w3.org" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    /*<![CDATA[*/
    .style1 {
            font-family: Verdana, Geneva, sans-serif;
            font-size: 10px;
            color: #000;
            background-color: #e3e3e3;
            margin: 0px;
            padding: 0px;
    body,td,th {
            font-size: 11px;
    /*]]>*/
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    #apDiv1 {
              position:absolute;
              width:200px;
              height:115px;
              z-index:1;
              left: 1048px;
              top: 376px;
    #apDiv2 {
              position:absolute;
              width:272px;
              height:115px;
              z-index:2;
              left: 764px;
              top: 456px;
    body,td,th {
              color: #F00;
    body {
              background-repeat: repeat-x;
    </style>
    <link href="Spry-UI-1.7/css/ContentSlideShow/wanderlust/wanderlust-brown.css" rel="stylesheet" type="text/css" />
    <script src="Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSelector.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="Spry-UI-1.7/includes/SpryContentSlideShow.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="141" binding="#ImageSlideShow" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_2" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_3" />
      <oa:widget wid="2141541" binding="#ImageSlideShow_4" />
      <oa:widget wid="2567023" binding="#OAWidget" />
    </oa:widgets>
    -->
    </script>
    <link href="SpryAssets/SpryStackedContainers.css" rel="stylesheet" type="text/css" />
    <!-- InstanceEndEditable -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript">
    </script>
    <script src="includes/jquery-1.4.2.js" type="text/javascript">
    </script>
    <script src="jQuery/js/jquery.jsocial.js" type="text/javascript">
    </script>
    <link href="jQuery/css/style.css" rel="stylesheet" type="text/css" />
    <script type="text/xml">
    <![CDATA[
    <!--
    <oa:widgets>
      <oa:widget wid="2149023" binding="#social" />
    </oa:widgets>
    -->
    ]]>
    </script>
    <style type="text/css">
    /*<![CDATA[*/
    body.c9 {background-color:#e3e3e3}
    table.c8 {background-color: #E3E3E3}
    p.c7 {color: #c3c3c3; font-size: 14px; text-align: center}
    p.c6 {text-align: center}
    table.c5 {background-color: #FFFFFF}
    table.c4 {background-color:#FFFFFF}
    table.c3 {font-size: 14px}
    tr.c2 {background-image:url(images/img02.jpg)}
    div.c1 {text-align: center}
    /*]]>*/
    </style>
    </head>
    <body class="c9">
    <table width="740" align="center">
    <tr>
    <td width="740">
    <div class="c1"><object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="709" height="202"><param name="movie" value="images/banner.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="images/banner.swf" width="709" height="202"><!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>--></object> <!--<![endif]--></object></div>
    </td>
    </tr>
    </table>
    <table class="c3" width="950" align="center" cellpadding="0" cellspacing="0">
    <tr class="c2" align="center">
    <td width="100"><a href="index.html">Home</a></td>
    <td width="100"><a href="About%20Us.html">About Us</a></td>
    <td width="100"><a href="Flights%20and%20Timetables.html">Flights &amp; Timetables</a></td>
    <td width="100"><a href="Manage%20My%20Bookings.html">Manage My Booking</a></td>
    <td width="100"><a href="Hotels.html">Hotels</a></td>
    <td width="100"><a href="FAQs.html">FAQs</a></td>
    <td width="100"><a href="Careers.html">Careers</a></td>
    <td width="100"><a href="Contact%20Us.html">Contact Us</a></td>
    </tr>
    </table>
    <table align="center" width="950" class="c4" cellpadding="0" cellspacing="0">
    <tr>
    <td>
    <table align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td width="950" height="500" align="left" valign="top"><!-- InstanceBeginEditable name="Content" -->
          <table width="178" border="5" align="left">
            <tr>
              <td height="23" colspan="3" align="left" valign="top" nowrap="nowrap" bgcolor="#FF6600"><h3>Create a Trip </h3></td>
            </tr>
            <tr>
              <td width="160" height="686" colspan="3" align="left" valign="top" bgcolor="#003366"><h3>
                <input type="radio" name="radio" id="radio" value="radio" />
                Flights<br />
                <input type="radio" name="radio" id="radio2" value="radio" />
                Hotels </h3>
                <h3>Country of Departure
                  <label for="select"></label>
                  <br />
                  <select name="select" id="select">
                    <option>United Kingdom</option>
                    <option>Spain</option>
                    </select>
                </h3>
                <h3>From<br />
                  <label for="select2"></label>
                  <select name="select2" id="select2">
                    <option>London</option>
                    <option>Nottingham</option>
                    <option>Birmingham</option>
                    </select>
                </h3>
                <h3>To<br />
                  <label for="textfield"></label>
                  <input type="text" name="textfield" id="textfield" />
                </h3>
                <h3>Depart<br />
                  <input name="DD/MM/YY" type="text" id="DD/MM/YY" value="DDMMYY" maxlength="6" />
                  <label for="checkbox"></label>
                  One Way Only
                  <input type="checkbox" name="checkbox" id="checkbox" />
                  <br />
                  <br />
                  Return<br />
                  <input name="DD/MM/YY2" type="text" id="DD/MM/YY2" value="DDMMYY" maxlength="6" />
                  My dates are fixed
                  <input type="checkbox" name="checkbox2" id="checkbox2" />
                </h3>
                <h3>Flight Class<br />
                  <select name="select3" size="1" id="select3">
                    <option>Economy</option>
                    </select>
                </h3>
                <h3>Ticket Type<br />
                  <input type="radio" name="radio3" id="radio3" value="radio3" />
                  <label for="radio3"></label>
                  Lowest Price<br />
                  <input type="radio" name="radio3" id="radio4" value="radio3" />
                  Flexible Conditions          </h3>
                <h3>Adults<br />
                  <select name="select4" size="1" id="select4">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                    </select>
                  <br />
                  <br />
                  Children <br />
                  <select name="select5" size="1" id="select5">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                    </select>
                </h3>
                <h3 align="left">Infants<br />
                  <select name="select6" size="1" id="select6">
                    <option>1</option>
                    <option>2</option>
                    <option>3</option>
                    <option>4</option>
                    <option>5</option>
                  </select>
                  <br /></h3>
                  <div align="right">
                    <input type="submit" name="Get Flights" id="GetFlights" value="Get Flights"/>
                  </div></td>
            </tr>
            </table>
          <table width="539" border="0" align="left" cellpadding="1" cellspacing="1">
            <tr valign="top">
              <td colspan="3" align="center" valign="top"><div id="ImageSlideShow">
                <div class="article">
                  <div class="photo">
                    <div class="caption">
                      <div id="ImageSlideShow_2">
                        <div class="article">
                          <div class="photo">
                            <div id="ImageSlideShow_3">
                              <div class="article">
                                <div class="photo">
                                  <script type="text/javascript">
                                  </script>
                                  <div id="ImageSlideShow_4">
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg1.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">San Francisco, CA</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Palace of Fine Arts</div>
                                          <div class="subTitle">Flowers of Spring, California</div>
                                          </div>
                                        <div class="content">
                                          <p>The Palace of Fine Arts was initially built for the Pan-Pacific Exposition in the 1930s, heralding San Francisco's rebirth after the 1906 earthquake.</p>
                                          <button type="button"><span><span><span>Click for Details</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg2.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">Horses</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Marin County, California</div>
                                          <div class="subTitle">Bay Area's  Best Secret</div>
                                          </div>
                                        <div class="content">
                                          <p>A few short miles from downtown San Francisco, horses roam in the fields of Marin County, California.</p>
                                          <button type="button"><span><span><span>More Info</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg3.jpg" alt="" width="300" height="300"/>
                                        <div class="caption">Open Space</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Marin County</div>
                                          <div class="subTitle">Parkland</div>
                                          </div>
                                        <div class="content">
                                          <p>Marin County is blessed with acres of open spaces, both public and private. </p>
                                          <button type="button"><span><span><span>Get Packing!</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    <div class="article">
                                      <div class="photo"> <img src="images/hpimg4.jpg" alt="" width="300" height="300" />
                                      <div class="caption">Orchids</div>
                                        </div>
                                      <div class="story">
                                        <div class="banner">
                                          <div class="title">Flower Garden</div>
                                          <div class="subTitle">Flora tour in Golden Gate Park</div>
                                          </div>
                                        <div class="content">
                                          <p>Orchids from all over the world can be seen in the Arboretum in Golden Gate Park.</p>
                                          <button type="button"><span><span><span>Find out More!</span></span></span></button>
                                          </div>
                                        </div>
                                      </div>
                                    </div>
                                  <script type="text/javascript">
    // BeginOAWidget_Instance_2141541: #ImageSlideShow_4
    var ImageSlideShow_4 = new Spry.Widget.ContentSlideShow("#ImageSlideShow_4", {
              widgetClass: "WLBSlideShow",
              displayInterval: 4000,
              transitionDuration: 2000
    // EndOAWidget_Instance_2141541
                                  </script>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div></td>
            </tr>
            <tr valign="top">
              <td colspan="3" align="center" valign="top" bgcolor="#000033">Discover the latest offers</td>
              </tr>
            <tr valign="top">
              <td align="center" valign="top" bgcolor="#CC9900"><img src="images/hpimg6.jpg" width="150" height="150" vspace="0" border="1" /></td>
              <td align="center" valign="top" bgcolor="#0000FF"><img src="images/hpimg7.jpg" alt="" width="150" height="150" vspace="0" border="1" /></td>
              <td align="center" valign="top" bgcolor="#666666"><img src="images/hpimg8.jpg" alt="" width="150" height="150" vspace="0" border="1" /></td>
            </tr>
            <tr valign="top">
              <td width="200" align="center" valign="top" bgcolor="#CC9900">Last Minute Offers</td>
              <td width="200" align="center" valign="top" bgcolor="#0000FF">Luxury Holidays</td>
              <td width="200" align="center" valign="top" bgcolor="#666666">Most Popular Holidays</td>
            </tr>
            <tr valign="top">
              <td colspan="3" bgcolor="#FFFFFF">
              <p> </p></td>
              </tr>
            </table>
          <table width="178" border="1" align="right">
            <tr>
              <td width="160" height="686" colspan="3" align="left" valign="top" bgcolor="#FFFFFF">news feed
                <script type="text/javascript">
              </script></td>
            </tr>
    </table>
      <!-- InstanceEndEditable --></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <table class="c5" align="center" width="950">
    <tr>
    <td></td>
    </tr>
    </table>
    <table class="c8" align="center" width="950">
    <tr>
    <td>
    <p class="c6"><strong><a href="index.html">Home</a> | <a href="Terms%20and%20Conditions.html">General Terms &amp; Conditions</a> | <a href="FAQs.html">FAQs</a> | Contact Us | Site Map. This website is only for my college work, none of the content is accruate</strong><strong><br /></strong></p>
    <div class="social"></div>
    <script type="text/javascript">
    //<![CDATA[
    // BeginOAWidget_Instance_2149023: #social
            $('.social').jsocial({
                            facebook        :  'facebook.com/myID',
                            twitter         :  'myID',
                            center          : true,
                            inline          : true,
                            small           : true,
                            newPage         : false
    // EndOAWidget_Instance_2149023
    //]]>
    </script>
    <p class="c6"><strong><br /></strong></p>
    <p class="c7"> </p>
    </td>
    </tr>
    </table>
    <script type="text/javascript">
    //<![CDATA[
    swfobject.registerObject("FlashID");
    //]]>
    </script>
    </body>
    <!-- InstanceEnd --></html>

Maybe you are looking for

  • How do I find apps compatible with iphone 3G?

    I would like to use an older iphone 3G as an iTouch ipod for my grandchild, now that I have a newer phone.  I can load music fine, but I'm trying to find some suitable games (11-14 years) that I can add as well.  All the apps that I've tried in the a

  • HT201317 how to delete photos from photo library iphone4s

    how to delete photos from photo library iphone4s?

  • DYnamic Screen -Display data Based On the First Field

    hello Helping Minds.. I have Two Fields In  MODULEPOOL SCREEN. 1--- BUKRS 2--- BELNR     ..... Both From BKPF table. My requirement is When i select a CompanyCode ( BUKRS )  In d first field,all the DocumentNO ( BELNR ) related to that CompCOde Shd b

  • Email and groups

    I just downloaded Mavericks yesterday.  Today, I am unable to "drag-and-drop" an email group into the "to" line of an email, and am having hand enter 100+ emails for a distribution.  Is anyone having the same problem and is there a fix?

  • Why does my AE gen 2 crash when I put my iPhone MAC address in?

    AE gen 2 with Time Capsule. I use MAC address for security (I think that is OK). I have a number of items that need WIFI and their specific MAC addresses are put into the box. All OK so far! Recently my wife and I have purchased iPhone which I also w