Hmm...you have a couple of problems in the source. You have 2 closing body tags and you
should close your tags in the same case as you open them. For example, you have:
<body bgcolor="black" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
</BODY>
<center><img src="images/banner.jpg"></center>
</BODY>
Try replacing the above with:
<body bgcolor="black" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<center>
<img src="images/banner.jpg" border="0" width="586" height="75">
</center>
</body>
Notice I also added the proper dimensions to your image as well as a border of "0". Good luck

.