Forum Moderators: open
<HTML>
<HEAD>
<TITLE></TITLE>
<script>
function twoFrameChange(left,middle){
left.1.location.href = left;
middle.2.location.href = middle;
}
</script></HEAD>
<BODY bgcolor="#000000" scroll="no">
<center>
<IMG NAME="image0" SRC="img/image.jpg" WIDTH="780" HEIGHT="585" BORDER="0" USEMAP="#image">
<MAP NAME="image">
<AREA SHAPE="rect" COORDS="393,187,419,198" HREF="http://www.site.com/news.html" target="1">
<AREA SHAPE="rect" COORDS="425,187,450,198" HREF="http://www.site.com/band.html">
<AREA SHAPE="rect" COORDS="457,188,497,198" HREF="http://www.site.com/gallery.html">
<AREA SHAPE="rect" COORDS="502,188,540,199" HREF="http://www.site.com/lyrics.html">
<AREA SHAPE="rect" COORDS="546,188,574,198" HREF="http://www.site.com/music.html">
<AREA SHAPE="rect" COORDS="580,188,631,199" HREF="javascript:twoFrameChange('itsover.html','getup.html');">
<AREA SHAPE="rect" COORDS="590,199,631,208" HREF="http://www.site.com/contact.html">
<AREA SHAPE="rect" COORDS="554,198,585,208" HREF="http://www.site.com/forum.html">
<AREA SHAPE="rect" COORDS="498,199,548,208" HREF="http://www.site.com/guestbook.html">
<AREA SHAPE="rect" COORDS="461,198,492,209" HREF="http://www.site.com/links.html">
<AREA SHAPE="rect" COORDS="426,198,455,209" HREF="http://www.site.com/merch.html">
<AREA SHAPE="rect" COORDS="390,198,420,209" HREF="http://www.site.com/shows.html">
</MAP>
</center>
<div style="position: absolute; top:235; left:128">
<iframe FRAMEBORDER="0" BORDER=0 marginwidth=0 marginheight=0 hspace=0 vspace=0 width=124 height=320 src="1.html" name=1 allowTransparency scrolling=auto style="FILTER: chroma (color=40FF40)"></iframe>
</div>
<div style="position: absolute; top:235; left:267">
<iframe FRAMEBORDER="0" BORDER=0 marginwidth=0 marginheight=0 hspace=0 vspace=0 width=486 height=320 src="2.html" name=2 allowTransparency scrolling=auto style="FILTER: chroma (color=40FF40)"></iframe>
</div>
<div style="position: absolute; top:235; left:767">
<iframe FRAMEBORDER="0" BORDER=0 marginwidth=0 marginheight=0 hspace=0 vspace=0 width=124 height=320 src="3.html" name=3 allowTransparency scrolling=auto style="FILTER: chroma (color=40FF40)"></iframe>
</div>
</BODY>
</HTML>
Second thing I noticed is that the link for changing two iframes is pure javascript, so it most likely will not allow spiders to index those pages. This may be OK with you, but if not, it needs to be something like:
<AREA SHAPE="rect" COORDS="580,188,631,199" HREF="itsover.html" onClick="javascript:twoFrameChange('itsover.html','getup.html');return false">
...and even then getup.html will be problematic, unless you have a plain link to it somewhere -- on your sitemap page or elsewhere on this page.
Does the javascript function for changing two iframes work for you when you click on the sixth area of the image map? It looks OK to me, but I could be missing something.
[discussion continues here:
[webmasterworld.com...]