Phil -- looks like you are still having the same problem.
Try inserting this code in between the <head> </head> elements of your page.
<style type="text/css">
body
{
background-color: #004080;
background-image: url('images/masterbackgroundJPG(flat)5copy.jpg');
background-repeat: no-repeat;
background-position: top left;
}
</style>
Then remove the -- background="images/masterbackgroundJPG(flat)5copy.jpg" -- code from your <body> tag.
Or as an alternative, you could do the following:
Cut out all of the blue margin around your background graphic
Set your body background to be just blue (#004080)
Create a one-cell table and set the width & height to exactly match your background image
Place your image as the background for the datacell (<td background="images/masterbackgroundJPG(flat)5copy.jpg">
Within that one datacell, insert a second table that places all of the text & image content on top of the master background image
This is a bit more complicated, but this way ensures that your text & image content stays in place relative to your background image.