Newbie HELP-Rectangle Box

I'm new to InDesign.  The guy who used to take care of our company phone book in InDesign left.  I know very little about this software.  It's been days of trial and error, but am making progress.  I've got the phone book to almost where I want it (I think), but can not figure out how to get rid of the rectangle box outline around text.  I created the box by selecting the rectangle icon off the toolbar on the left, however I don't want the outline around the text I put in it.  Any help would be so greatly appreciated.  I'm an AS400 systems admin, not a graphic designer, so learning this stuff has been like learning another language

Choose View > Hide Frame Edges. Does the outline go away? If there's still an outline (called a "stroke" in InDesign) around the frame, select the frame and use the Stroke panel to set the Weight back to 0. If you need to do this for a bunch of frames, your work will go faster if you use object styles.
It sounds like you used the Rectangle tool to drag an object, and then you inserted text into that object. That's fine, but you should just use the Type tool to create text frames. You'll end up saving yourself some time in the long run by watching a few basic videos. See the Getting Started in InDesign Help topic.

Similar Messages

  • Lookup expression is not working when I am using with in the rectangle box in SSRS

    I have two datasets with common member is ProgramID.
    I have followed the below steps,
    1. Added one table  (2x2) and mapped this table to dataset1. After that I have removed top row.                                               
    That means I am maintaing only  data row.
    2. Added group to the table (ProgramID). Now the programid is sitting at cell#(1,1) and  cell#(1,2) is blank
    3. I have verified the report with preview and able to see the data for my all programs. I have 5 programs
    4. my plan is adding chart and matrix reports to cell# (1,2). If I am adding chart/matrix to the cell#(1,2) then we can't contol the  cell alignments in terms of height x width.
     To resolve that problem, I have added one rectangle control to the cell#(1,2) then I have added my chart and matrix report
    5. After completing the report, I have verified with preview and able to see the reports (chart/matrix) for all my 5 programs by page wise (note: I have provided page break before for my rectangle)
    6. Till this point, I have no issues
    7. Now, I have added one more row under the group. so, we have our main table (2x2). Becuase of programId group we can only see 3 cells in total table  (cell# (1,1) =ProgramId  cell#(1,2)=chart and matix reports under rectangle box; cell#(2,1)=already
    merged with ProgramID group; cell#(2,2)= planned to add one more rectanlge and add two reports (chart and matrix)
    8. Now, i have added rectangle to cell#(2,2) then added chart and matrix reports within the rectangle.
    9. cell#(2,2) reports are needs to extract the data from dataset-2. Here we have common member is ProgramID (ds-1,ds-2)
    10. First I have tested for matrix report by adding lookup expression
          Matrix report (2x2)
         row-1: Cell(1,1)= Gender report heading ; cell(1,2)=Month  (column group)
         Note: month is also common member in both the datasets. 
         row-2: cell(2,1)--  =Lookup(Programid.value, Programid.value,Gender.value,"Dataset2")  (Gender data is Male and Female)
                    Cell(2,2) -- empty for now
     11. I have tried to preview the report and able to see the report without any issues and below are observations
            main Table (2 x2)
             Cell# (1,1)  = ProgramID --Returning all 5 programs properly
             Cell# (1,2)  = Dataset1 related report (chart and matrix reports under rectangle) -- able to see without any issues
             Cell#(2,1)  = We already know this is merged cell. i.e menas ProgramID dispalying
              Cell#(2,2)= Only Male record is dispalying in the matrix report which is under rectanlge (here we have applied Lookup expression.
    Note: male is the first record from the database and Female is the second record
    Also, observed that Cell#(2,2) matrix report is unable to display the gender count information when I have provided count value expression in the cell(2,2) within the matrix and the expression I have uses is
      = sum(Lookup(ProgramId.value,ProgramId.value,GenderCOunt.value,"Dataset2"))
    Please ask me if I am unable to explain or lengthy explain.
    Point : Why the lookup expression is giving the first record only (in case of gender #(male, female) and why it is unable to give the gendercount.  Gendercount cell is totally blank.
    Please help me.
    Kishore.

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Rectangle box in designer lovs and in deski report where there is apostroph

    HI ,
    I have came across two issues with same scenario.
    Customer is using Sybase Adaptive server 12.5 when he is seeing rectangle box in designer lovs and in deski report where there is apostrophie.
    The apostrophie is of different kind, the normal one in our keyboard shows correctly.
    In bo 6.5 it was showing correctly, I found that when I use odbc connection it works fine but when I use Adaptive server client for creating a connection it shows junk character for those LOV's.
    I have compared the sbo and prm files of odbc and sybase and also of 6.5 and XIR2 but not found any peculiar difference relating to it.
    Can somebody help in this.
    For eg.
    CHILDRENu2019S = this shows junk character
    and
    CHILDREN'S = this works fine

    Hi Gurudev,
                        Can you use or create
    Replace(<Object Name>," ' "," ")
    Regards
    Prashant

  • How to create the selectable-resizable-movable transparent rectangle box?

    Hai,
    I want to create selectable-resizable-movable Transparent Rectangle box.This rectangular box may be moved and/or resized by putting the mouse pointer on a side or corner of the rectangle box.
    This is for cropping the image where rhe rectangle is selected. Please help how to write the code.
    Thanks in advance
    Regards,
    Saravanan.K

    Unless you're doing something special here (I'm not too sure what you mean by 'may not cover the background image'), I don't think you need an 'effect'.
    Try this:
    private Rectangle createSelectWindow(final Color color, double length) {
            Rectangle rect = new Rectangle(length, length);
            rect.setFill(Color.RED);
            rect.setStroke(Color.RED);
            rect.setOpacity(0.5);  // i.e. make it 50% visible
            rect.setCursor(Cursor.HAND);
            return rect;
    }Or, if you don't want the border to be translucent and just the fill, try this:
    private Rectangle createSelectWindow(final Color color, double length) {
            Rectangle rect = new Rectangle(length, length);
            rect.setFill(new Color(1, 0, 0, 0.5));  // rgba - use an alpha of 0.5 on the fill color
            rect.setStroke(Color.RED);
            rect.setCursor(Cursor.HAND);
            rootPane.getChildren().add(rect);
    }

  • How to reference the rectangle box object in my code?

    I have to do some code migration from 16 bit Apps (Forms on
    Win3.1) to 32 bit apps(Forms on WinNT).For this migration i made
    a form for generation all the form in one shot . it's working
    fine. but it's giving me scroll bar in each form. we used
    rectangle box in most of the form and as u know i can not reffer
    rectangle box in programming.so i am not able to resize that. Is
    there any way so that i can refer that object programatically and
    can resize it.
    null

    shilpesh (guest) wrote:
    : I have to do some code migration from 16 bit Apps (Forms on
    : Win3.1) to 32 bit apps(Forms on WinNT).For this migration i
    made
    : a form for generation all the form in one shot . it's working
    : fine. but it's giving me scroll bar in each form. we used
    : rectangle box in most of the form and as u know i can not
    reffer
    : rectangle box in programming.so i am not able to resize that.
    Is
    : there any way so that i can refer that object programatically
    and
    : can resize it.
    Shilpesh,
    Please appreciate that this discussion forum is for Reports 6i
    Beta ONLY, as is also mentioned on the first page on the forum.
    Hence we will not be able to address this question .
    Regards
    The Oracle Reports Team
    null

  • How to refer rectangle box in my program?

    I have to do some code migration from 16 bit Apps (Forms on
    Win3.1) to 32 bit apps(Forms on WinNT).For this migration i made
    a form for generation all the form in one shot . it's working
    fine. but it's giving me scroll bar in each form. we used
    rectangle box in most of the form and as u know i can not reffer
    rectangle box in programming.so i am not able to resize that. Is
    there any way so that i can refer that object programatically and
    can resize it.
    null

    Hi,
    Sorry but i don' t understand what you've written, if
    my executable jar is named
    myexecutablejar.jar and the jar that i would
    like to put in in order to work is named
    jdic.jar what would be the command?
    Thanks for your precision.Is this clearer?
    jar cvf myexecutablejar your-classes path-of-jdic.jar

  • My mac mini will randomly freeze up and my scrren will get multi-colored rectangle boxes

    my mac mini will randomly freeze up and my scrren will get multi-colored rectangle boxes all across the screen. the only option i have left to do is reboot my whole system by the power button. has anyone ever encountered this problem?

    The two most highly recomended RAM suppliers here in the ASC,
    are > OWC macsales.com and > Crucial.com

  • I have Indesign CS6.  Question is about the rectangle box on the left side.

    The rectangle/box with the X through it, on the left in the second column, does not have the X through it anymore and now when I set up something to place in that section there is no X there either.  So I kept doing my thing as usual because it was still working, but when I printed it out the outline shows up where before the X was and there was no outline that showed up.  I do not know what I hit or did to change this.

    Screen shots, please.
    There are two, similar-looking, tools in the toolbox. The ones with the X are image frame tools and expect image content by default. These do not have stroke or fill applied when created, no matter what settings might be set as defaults.
    The ones without the X are the Shape tools, and by default they expect no content, but you can place anything into them if they are empty. They will have whatever stroke and fill are set by default when created.

  • A rectangle box with four options, Restart,Sleep,Cancel and Shut Down appears some times when I boot up, how can I stop this from happening?

    A rectangle box come up sometimes when I boot up my computer, it says, Are you sure you want to shut down your computer now? and has four boxes Restart, Sleep,Cancel and Shut Down. How can I get rid of this annoying occurance?

    That box is normally invoked with Control-Eject.

  • Copying text from excel table in PDF, pastes rectangle boxes into other programs.

    Adobe acrobat X Std.
    I have a PDF file with text, graphics and an excel table in it.
    I add comments to the PDF file and reprint it to a new PDF file.
    In the new file I cannot select text from the excel table and paste it into anything.
    When I paste into word or other programs I get rectangle boxes.
    If I go to the original PDF I the text copies just fine.
    Any ideas would be great.

    Here is a video!!
    http://www.youtube.com/watch?v=J3CJfBlZuW0
    Adobe illustrator CS3, M/S Excel 2003, HWP 2002(Korean Wordprocess),
    Macro Keyboard, script, Action ...

  • How is the rectangle box around my curser disengaged?

    How is the rectangle box around my curser disengaged? I looked in Sys Prefs to no avail; otherwise, ML is so excellent in every way...
    Thank you for your time, Lisa

    Go to accesibility in sys prefes  then go to zoom and zoom style, change that to fullscreen.

  • Rectangle box to guide?

    Hi guys,
    1 - I download a template for a DVD case, it was interesting that some rectangles boxes in the template were actually guides. I checked in the Layers Pannel and that box say Guides. So how do you make a guide with a rectangle shape?
    2 - I am regular user of InDesign and love the keyboard shortcut to toggle between open document ⌘+ > but in Illustrator it will not acept that modification from the keyboard shortcut list. Strange they are both Adobe software.
    thanks for any info,

    1 - I download a template for a DVD case, it was interesting that some rectangles boxes in the template were actually guides. I checked in the Layers Pannel and that box say Guides. So how do you make a guide with a rectangle shape?
    View --> Guides --> Create Guides
    Strange they are both Adobe software.
    Yes, but from different centruries. Check, whether you are allowing system shortcuts and then also check AI's internal shortcut settings. Still, maybe something you can't have...
    Mylenium

  • Adobe Community Help search box is black.  Can't see what I type for inquiry.

    When I click on help in Photoshop or Bridge
    CS5 the Community Help search box appears, but the entire left column is black.  I can't see what I type or see any results, although they're there (I can click at random in that black column and I get some result on the right).  Anyone know how to fix that?

    I uninstalled Air and Flash, then downloaded and reinstalled each of them.
    Clicking on Help in Bridge now results is black backgrounds on the top row (left and right), and when I type in a search term it appears in white.  However, I get no results from my inquiry (I typed in "photo", among others).  Anything else I could try?  Help was never very helpful, but at least it was someplace to start....

  • Newbie- Help with Flash dynamic pop up box

    Hi i'm new to flash and was just wondering if anyone had any
    tutorials or anything on how to create a dynamic pop up box with
    flash similar to this one
    http://www.photo-flash-maker.com/flash-template-dynamic-box.html

    Hi there,
    You are talking about making a movieclip open on top of the
    rest of your information in flash. This is not really called a
    popup (popup is more often referred to a window that opens).
    What you can do is making in the top layer a movieclip that
    would become visible when you click on something (for example a
    photo).
    Greetings,
    Guido
    Creation site web |
    Jeux
    Concours |
    Echantillon gratuit |
    Radin

  • Newbie help me obi wans: ...coded locked by template or translator

    Hi Folks,
    I'm such a newbie to DW   I've been using it for a few years actually, but in a very basic sense.
    I dloaded a template, added some graphics, made some buttons etc.. and of course text, but when it comes to coding,
    I've only figure out how to add spaces  lol
    I'm trying to add a flash video to my samples page.  I can add images, but every time I add the .flv, I receive the subject message.
    So here are 2 issues:
    1. I don't know if this related to #2, but I can't erase the 3rd column...or even use it. it's locked - I see a circle with a line through it.  The template I bought did say it was 3 columns, but I don't understand why I can't touch it.  I've attached a tiff of what it looks like right now.
    2. as the subject says "changing code is locked by the template is locked a template or translator" is giving me grief.
    I've reviewed the previous posts on the subject, but I'm afraid my newbie-ness has left me not knowing what to do.  ie. I can't find a time/date to change...I see the <head> and <script>, but they're greyed out on the one page I'm trying to edit.  They're not greyed out on the template page however.
    I also tried saving my .dwt as a new template, but that didn't work either.
    Here is code for my Samples page.  I'll post the code for the template page under that.
    <html><!-- #BeginTemplate "/Templates/Main2.dwt" --><!-- DW6 -->
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>dvdslideshow</title>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000" onLoad="MM_preloadImages('../oldafter.jpg','../hockey new 281.jpg','../sp40 fixed.jpg','../redeyegone.jpg','../yellowfinal.jpg','../sp900_800.jpg','../soloedited.jpg ','../breton_done_web.jpg')">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact me.htm"></a><a href="../contact me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td><img src="../images/sidetop.gif" width="128" height="17"></td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-324-2383___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                  <tr>
                    <td width="267" height="145" valign="top"><p><img src="../pg t samples.jpg" width="119" height="34"></p>
                        <p>It's one thing to read about my services, but once you
                          actually see the results, you will realize that personalization
                          is the key to your DVD project. Aside from your photos,
                          video and favourite music, I completely personalize every
                        aspect of your DVD right from the packaging to the DVD menus.</p>
                        <p>Click <a href="testimonials.htm"><strong>here</strong></a> to read client testimonials.</p>
                        <p>Click on the thumbnails below to view various samples from
                          recent projects.</p>
                        <p><em>All samples have been reduced in quality to be internet
                          friendly. Original versions are of superior quality and
                          full-TV size. </em></p>
                        <p>You will need Apple's Quicktime player to view the movie
                          files. The free download is available by clicking <a href="http://www.apple.com/quicktime/products/qt"><strong>here</strong></a>.</p>
                      <p> </p>                    </td>
                    <td width="290" align="center" valign="top"><p> </p>
                        <p> </p>
                        <p align="center">Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><strong><a href="homedvds.htm"><font size="+1">Video
                            and Reel Transfers</font></a></strong></li>
                            <li><font size="+1"><strong><a href="slideshows2dvd.htm">Photo
                              Slideshows</a></strong></font></li>
                            <li><font size="+1"><strong><a href="../photorestorations.htm">Photo
                              Transfers and Restorations</a></strong></font></li>
                            <li> <font size="+1"><strong><a href="audiotransfers.htm">Audio
                              Transfers</a></strong></font></li>
                          </ul>
                        </div>
                        <p> </p>
                        <p align="right"> </p>
                      <p> </p></td>
                  </tr>
                  <tr valign="top">
                    <td height="232" colspan="2" valign="top"> <p align="left"><strong><font size="+1">PHOTOSLIDESHOW
                          SAMPLES:</font></strong></p>
                      <p align="left"> </p>
                      <p align="left">The following slideshow was recently done for a surprise birthday party.</p>
                      <p align="center"><a href="Sshowsample.mp4"><img src="Sshowsample2.jpg" width="163" height="89"></a></p>
                      <p align="left">Photographs with voice over narration and
                          text titles were combined to create a presentation that
                          will provide generations with a history on their forefather
                          in this biography.</p>
                        <p align="center"><a href="../biography.wmv"><img src="../bio111.jpg" width="111" height="73" border="0"></a></p>
                        <p align="left"> </p>
                        <p align="left">This couple were married by a lake in a beautiful
                          wedding. I compiled camcorder footage along with photographs
                          into a memorable DVD, complete with a bonus music video.
                        <p align="center"><a href="../ceremusicvidsam.mp4"><img src="../arbour.jpg" width="111" height="72" border="0"></a>
                        <p align="left"><strong><font size="+1">8mm REEL COLOUR CORRECTION
                          SAMPLE:</font></strong>
                        <p align="left">Are you videos dark, too bright or discoloured?
                          I can edit your tapes and film to repair colour issues,
                        bringing your movies back to life.                   
                        Click <a href="http://homepage.mac.com/memories2dvd/iMovieTheater30.html"><strong>HERE</strong></a> to view samples.
                        <p align="left"><strong><font size="+1">PHOTO RESTORATION
                          SAMPLES</font></strong>
                        <p align="left">These samples illustrate the various types
                          of blemishes which can be dealt with to restore your photographs.</p>
                        <p align="left"> <strong><u><font size="3">Simply move your
                          mouse cursor over each photo to see the difference.</font></u></strong></p>
                        <p align="left"><strong>General Dust/Blemish Removal</strong></p>
                        <p align="left"> </p>
                        <p> </p>
                        <div align="center">
                          <p align="left"> </p>
                        </div>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('sp40 fix','','../sp40 fixed.jpg',1)"><img src="../sp40_orig.jpg" name="sp40 fix" width="600" height="418" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image56','','../hockey new 281.jpg',1)"><img src="../hockey old 281.jpg" name="Image56" width="270" height="163" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('oldsue','','../oldafter.jpg',1)"><img src="../oldbefore.jpg" name="oldsue" width="320" height="501" border="0"></a></p>
                        <p align="left"><strong>Red Eye Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image55','','../redeyegone.jpg',1)"><img src="../redeye.jpg" name="Image55" width="231" height="416" border="0"></a></p>
                        <p align="left"><strong>Colour &amp; Stain Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('yellow','','../yellowfinal.jpg',1)"><img src="../yelloworig.jpg" name="yellow" width="270" height="395" border="0"></a></p>
                        <p align="left"><strong>Contrast &amp; Exposure Adjustments
                          and Crack Removals </strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('breton','','../breton_done_web.jpg',1)"><img src="../breton base_web.jpg" name="breton" width="539" height="1000" border="0"></a>                   
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('cracks','','../sp900_800.jpg',1)"><img src="../sp9orig.jpg" name="cracks" width="600" height="410" border="0"></a>
                        <p align="left"><strong>Isolation of Main Subject</strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('isolation','','../soloedited.jpg',1)"><img src="../15sisters.jpg" name="isolation" width="300" height="500" border="0"></a>
                        <p align="left"> </p>
                        <p><br>
                          <img src="../images/clearpixel.gif" width="430
    " height="1"> </p>                    </td>
                  </tr>
                  <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width"23" background="../images/rightbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    <!-- #EndTemplate --></html>
    CODE FOR THE TEMPLATE PAGE:
    <html>
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Untitled Document.</title>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact%20me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact%20me.htm"></a><a href="../contact%20me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="../slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="../audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                    <tr>
                      <td width="329" height="189" valign="top"><p><img src="../pg%20t%20instrucnl.jpg" width="300" height="27"></p>
                        <p align="left">From teachers to health care professionals
                          to corporate trainers, I can help you create a compelling
                          instructional video. Using techniques such as Picture in
                          Picture will deliver your educational knowledge with extra
                          value. The ease of navigation of DVD makes instruction more
                          efficient and effective.</p></td>
                      <td width="4" valign="top"><img src="images/hr.gif" width="1" height="125"> </td>
                      <td colspan="2" valign="top"><p><img src="../pg%20t%20blank.jpg" width="204" height="27
    "></p>
                        <p>Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><a href="../homedvds.htm">classic home videos</a></li>
                            <li> <a href="../weddings2dvd.htm">weddings2dvd</a></li>
                            <li> <a href="../sports2dvd.htm">sports2dvd</a></li>
                            <li> <a href="../slideshows2dvd.htm">DVD photo slideshows</a></li>
                            <li> <a href="../reunions2dvd.htm">reunions2dvd</a></li>
                            <li> <a href="instructionaldvds.htm">instructional DVD</a></li>
                          </ul>
                        </div></td>
                    </tr>
                    <tr>
                      <td height="3
    50" colspan="3" valign="top"><p align="center"><img src="../images/hr.gif" width="361" height="1"></p>
                        <p align="left">  </p>
                        <p align="left">Please click <a href="../sample.htm"><strong>here</strong></a>
                          to view real samples from recent projects.<br>
                        </p></td>
                      <td width="2" valign="top"><!--DWLayoutEmptyCell--> </td>
                    </tr>
                    <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width"23" background="../images/rightbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- TemplateBeginEditable name="EditRegion1" --><!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    </html>
    Any help is hugely appreciated.
    Cheers
    keebler

    thanks for the quick reply!
    I found the 2 things to change, but when I go back to my page...everything is gone!  eek
    (fear no panic - I did back up my website prior to making any changes
    (file attached).
    it looks like there is only 1 column instead of 3 sections. I was hoping to lose just the one on the right.
    here is the new code from my Samples page (not the template)  I"ll post that below.
    <!-- #BeginTemplate "/Templates/Main2.dwt" --><!-- DW6 --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>dvdslideshow</title>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="public_html/style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000" onLoad="MM_preloadImages('sp40 fixed.jpg','hockey new 281.jpg','oldafter.jpg','redeyegone.jpg','yellowfinal.jpg','breton_done_web.jpg','sp900_8 00.jpg','soloedited.jpg')">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="public_html/images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="public_html/index.htm"><img name="Image35" border="0" src="public_html/images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="public_html/services.htm"><img name="Image36" border="0" src="public_html/images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="public_html/samples.htm"><img name="Image37" border="0" src="public_html/images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="public_html/pricing.htm"><img name="Image38" border="0" src="public_html/images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="public_html/the_process.htm"><img name="Image39" border="0" src="public_html/images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="public_html/testimonials.htm"><img name="Image40" border="0" src="public_html/images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="public_html/faq.htm"><img name="Image41" border="0" src="public_html/images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="public_html/disclaimers.htm"><img name="Image42" border="0" src="public_html/images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="public_html/contact me.htm"></a><a href="public_html/contact_me.htm"><img name="Image45" border="0" src="public_html/images/menu/email.gif" width="128" height="19"></a>
                  <a href="public_html/contact me.htm"></a><a href="public_html/contact me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="public_html/specials.htm"><img src="public_html/images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="public_html/slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="public_html/audiotransfers.htm"><img src="public_html/LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="public_html/images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="public_html/images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="public_html/name.gif" width="360" height="50"></td>
        <td width="16"><img src="public_html/images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="public_html/images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="public_html/images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="public_html/images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="public_html/images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="public_html/about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="public_html/images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="public_html/images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="public_html/images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="public_html/images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="public_html/images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="public_html/images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="public_html/images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="public_html/images/leftbg.gif"><img src="public_html/images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                  <tr>
                    <td width="267" height="145" valign="top"><p><img src="pg%20t%20samples.jpg" width="119" height="34"></p>
                        <p>It's one thing to read about our services, but once you
                          actually see the results, you will realize that personalization
                          is the key to your DVD project. Aside from your photos,
                          video and favourite music, I completely personalize every
                          aspect of your DVD right from the packaging to the DVD menus.</p>
                        <p>Click on the thumbnails below to view various samples from
                          recent projects.</p>
                        <p><em>All samples have been reduced in quality to be internet
                          friendly. Original versions are of superior quality and
                          full-TV size. I can supply demo DVDs upon request.</em></p>
                        <p>You will need Apple's Quicktime player to view the movie
                          files. The free download is available by clicking <a href="http://www.apple.com/quicktime/products/qt"><strong>here</strong></a>.</p>
                        <p> </p>                    </td>
                    <td width="290" align="center" valign="top"><p> </p>
                        <p> </p>
                        <p align="center">Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><strong><a href="homedvds.htm"><font size="+1">Video
                              Transfers</font></a></strong></li>
                            <li><font size="+1"><strong><a href="public_html/slideshows2dvd.htm">Photo
                              Transfers</a></strong></font></li>
                            <li><font size="+1"><strong><a href="photorestorations.htm">Photo
                              Restorations</a></strong></font></li>
                            <li> <font size="+1"><strong><a href="public_html/audiotransfers.htm">Audio
                              Transfers</a></strong></font></li>
                          </ul>
                        </div>
                        <p> </p>
                        <p align="right"> </p>
                      <p> </p></td>
                  </tr>
                  <tr valign="top">
                    <td height="232" colspan="2" valign="top"> <p align="left"><strong><font size="+1">PHOTOSLIDESHOW
                          SAMPLES:</font></strong></p>
                        <p align="left">Photographs with voice over narration and
                          text titles were combined to create a presentation that
                          will provide generations with a history on their forefather
                          in this biography.</p>
                        <p align="center"><a href="biography.wmv"><img src="bio111.jpg" width="111" height="73" border="0"></a></p>
                        <p align="left">The following sample was part of a 50th birthday
                          celebration. Three hundred photographs were scanned and
                          mixed with video clips to make the ultimate surprise movie.                    </p>
                        <p align="center"><a href="sample1.mov"><img src="sample1.jpg" width="111" height="82" border="0"></a></p>
                        <p align="left"> This sample was taken from a couple's vacation.
                          The couple travelled throughout SouthEast Asia and South
                          America and amassed approximately 750 digital photos. I
                          organized the DVD by country and added their favourite music
                          so they could instantly re-visit their adventures.
                        <p align="center"><a href="sample2.mov"><img src="boats.jpg" width="111" height="81" border="0"></a>
                        <p align="left">This couple were married by a lake in a beautiful
                          wedding. I compiled camcorder footage along with photographs
                          into a memorable DVD, complete with a bonus music video.
                        <p align="center"><a href="ceremusicvidsam.mp4"><img src="arbour.jpg" width="111" height="72" border="0"></a>
                        <p align="left"><strong><font size="+1">8mm REEL COLOUR CORRECTION
                          SAMPLE:</font></strong>
                        <p align="left">Are you videos dark, too bright or discoloured?
                          I can edit your tapes and film to repair colour issues,
                          bringing your movies back to life. Click <a href="http://homepage.mac.com/memories2dvd/iMovieTheater30.html"><strong><font size="+1">HERE</font></strong></a>
                          to view samples.
                        <p align="left"><strong><font size="+1">PHOTO RESTORATION
                          SAMPLES</font></strong>
                        <p align="left">These samples illustrate the various types
                          of blemishes which can be dealt with to restore your photographs.</p>
                        <p align="left"> <strong><u><font size="3">Simply move your
                          mouse cursor over each photo to see the difference.</font></u></strong></p>
                        <p align="left"><strong>General Dust/Blemish Removal</strong></p>
                        <p align="left"> </p>
                        <p> </p>
                        <div align="center">
                          <p align="left"> </p>
                        </div>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('sp40 fix','','sp40 fixed.jpg',1)"><img src="sp40_orig.jpg" name="sp40 fix" width="600" height="418" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image56','','hockey new 281.jpg',1)"><img src="hockey%20old%20281.jpg" name="Image56" width="270" height="163" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('oldsue','','oldafter.jpg',1)"><img src="oldbefore.jpg" name="oldsue" width="320" height="501" border="0"></a></p>
                        <p align="left"><strong>Red Eye Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image55','','redeyegone.jpg',1)"><img src="redeye.jpg" name="Image55" width="231" height="416" border="0"></a></p>
                        <p align="left"><strong>Colour &amp; Stain Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('yellow','','yellowfinal.jpg',1)"><img src="yelloworig.jpg" name="yellow" width="270" height="395" border="0"></a></p>
                        <p align="left"><strong>Contrast &amp; Exposure Adjustments
                          and Crack Removals </strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('breton','','breton_done_web.jpg',1)"><img src="breton base_web.jpg" name="breton" width="539" height="1000" border="0"></a>                   
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('cracks','','sp900_800.jpg',1)"><img src="sp9orig.jpg" name="cracks" width="600" height="410" border="0"></a>
                        <p align="left"><strong>Isolation of Main Subject</strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('isolation','','soloedited.jpg',1)"><img src="15sisters.jpg" name="isolation" width="300" height="500" border="0"></a>
                        <p align="left"> </p>
                        <p><br>
                          <img src="images/clearpixel.gif" width="430
      " height="1"> </p>                    </td>
                  </tr>
                  <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="public_html/images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="public_html/index.htm"><strong>home</strong></a><strong>
                          | <a href="public_html/services.htm">services</a> | <a href="public_html/sample.htm">samples</a>
                          | <a href="public_html/pricing.htm">pricing</a> | <a href="public_html/testimonials.htm">testimonials</a>
                          | <a href="public_html/the_process.htm">the process</a><br>
                          <a href="public_html/faq.htm"> f.a.q.</a> | <a href="public_html/disclaimers.htm">disclaimers</a>
                          | <a href="public_html/contact_me.htm">contact me</a> | <a href="public_html/about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width="23" background="../images/rightbg.gif<img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="public_html/images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="public_html/images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="public_html/images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="public_html/images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- #BeginEditable "EditRegion1" --><!-- #EndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="public_html/images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="public_html/images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="public_html/images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="public_html/images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    <!-- #EndTemplate --></html>
    TEMPLATE CODE:
    <html>
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Untitled Document.</title>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact%20me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact%20me.htm"></a><a href="../contact%20me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="../slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="../audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                    <tr>
                      <td width="329" height="189" valign="top"><p><img src="../pg%20t%20instrucnl.jpg" width="300" height="27"></p>
                        <p align="left">From teachers to health care professionals
                          to corporate trainers, I can help you create a compelling
                          instructional video. Using techniques such as Picture in
                          Picture will deliver your educational knowledge with extra
                          value. The ease of navigation of DVD makes instruction more
                          efficient and effective.</p></td>
                      <td width="4" valign="top"><img src="images/hr.gif" width="1" height="125"> </td>
                      <td colspan="2" valign="top"><p><img src="../pg%20t%20blank.jpg" width="204" height="27
      "></p>
                        <p>Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><a href="../homedvds.htm">classic home videos</a></li>
                            <li> <a href="../weddings2dvd.htm">weddings2dvd</a></li>
                            <li> <a href="../sports2dvd.htm">sports2dvd</a></li>
                            <li> <a href="../slideshows2dvd.htm">DVD photo slideshows</a></li>
                            <li> <a href="../reunions2dvd.htm">reunions2dvd</a></li>
                            <li> <a href="instructionaldvds.htm">instructional DVD</a></li>
                          </ul>
                        </div></td>
                    </tr>
                    <tr>
                      <td height="3
      50" colspan="3" valign="top"><p align="center"><img src="../images/hr.gif" width="361" height="1"></p>
                        <p align="left">  </p>
                        <p align="left">Please click <a href="../sample.htm"><strong>here</strong></a>
                          to view real samples from recent projects.<br>
                        </p></td>
                      <td width="2" valign="top"><!--DWLayoutEmptyCell--> </td>
                    </tr>
                    <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width="23" background="../images/rightbg.gif<img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- TemplateBeginEditable name="EditRegion1" --><!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    </html>

Maybe you are looking for

  • Moving configuration data from ECC to MDG

    Hi, We are also in process of moving the configuration data from ECC (Ehp 5.0) to MDG Hub (Ehp 6.0), looking for the option copying tables in transport request and moving the transport request to MDG-C. Appreciate your suggestion or best practices on

  • Why won't my Lexulous game open?

    My Lexulous has decided not to open for play....can anyone out there help please?

  • Safari is crashing - Crashed Thread:  3  Safari: CertRevocationChecker

    Safari comes up for a few minutes and then crashes. The crash report being generated seems to indicate the same thread every time. I've done everything I could think of including re-installing Safari and then restoring it from Time Machine when that

  • Where on earth can I re-download Photoshop Elements 6?

    Where on earth can I re-download Photoshop Elements 6? I have upgraded my OS to Yosemite and it tells me I must re-install it. Downloads on the Adobe site go back as far as PS Elements 7. I have my serial number. I don't want to buy another version.

  • DVD's & CD's with working content indices

    In OS 10.3, read-only optical volumes bearing fully functional content indices could be created using disk image files. These were extremely useful for many purposes, and circumvented the frequent tendency of the indexing software to erase entire con