Posted 28 March 2012 - 05:26 AM
The code you have there is quite a jumble, but I think I understand a bit better what you are trying to do.
First, the term 'background' image refers to an image in the background. Your image fp2_bkg.jpg may be meant to be used as a background, but by you inserting it into the page content, you're not using it as a background. This is perfectly fine, but using the term in this context led to some confusion on my end.
So if I got it right this time, you want the entire image to be clickable and take your visitor to the next page. For that, you do not need an image map. Image maps are used, if you want certain areas of an image clickable. so get rid of what I crossed out:
<td><a href="full_page3_bkg3.html"><img src="fp2_bkg.jpg" width="950" height="625" border="0" usemap="#Map"></a></td><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "></tr><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "></table><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "><map name="Map"><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "><area shape="rect" coords="1,1,951,627" href="full_page3_bkg3.html" target="_parent"><br style="color: rgb(28, 40, 55); font-size: 13px; line-height: 19px; background-color: rgb(250, 251, 252); "></map>
Now the entire image is a link and clicking it will take you to page 3.
If you want to use your image as a true background image, it's not clickable, as it really is no content. You could, however, create a transparent image, placed that on top of your background image, and make the transparent image the clickable link.