Hi eveyone:

I didn't have any problems creating hotspot links in the header image, but when I tried to set them up for an image placed in a blank box (I downloaded the blank box mod) -- it doesn't work. The image in question is in the left column (the one with 4 squares). Any idea what I'm doing wrong? I can't find anything wrong with my code. Thank you!

Here is the link to my site: http://www.mishutkadesign.com//index...page=page&id=2

Code:
<?php
/**
* blank sidebox - allows a blank sidebox to be added to your site
*/

$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';

// Replace the text and HTML tags between the apostophes.
// Use as many or as few lines using this model as you need for your custom content.

$content .= '<p></p>';
$content .= '<img src="includes/templates/MDS/images/sidebox-nav.gif" alt="" width="200" height="200" border="0" usemap="#Map" /><map name="Map" id="Map">
<area shape="rect" coords="0,-2,96,96" href="http://www.mishutkadesign.com//index.php?main_page=page&amp;id=19" />
<area shape="rect" coords="106,1,201,96" href="http://www.mishutkadesign.com//index.php?main_page=page&amp;id=20" />
<area shape="rect" coords="0,105,96,199" href="http://www.mishutkadesign.com//index.php?main_page=page&amp;id=21" />
<area shape="rect" coords="104,104,201,199" href="http://www.mishutkadesign.com//index.php?main_page=page&amp;id=22" />
</map>';

$content .= '</div>';
?>