I have a webpage (@ ) that dynamically includes an include file (HTML text) and an image. 2 of the images have links that need to be clickable, and they used to work, but I reworked the website graphics and layers and now the links don't work...
Any clues why???
Thanks in advance...
Jason
Here's a code snippet. Any questions about it just ask.
Any clues why???
Thanks in advance...
Jason
Here's a code snippet. Any questions about it just ask.
Code:
<script language="JavaScript">
<!--
function MM_openWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<map name = "CamMap">
<area shape="rect" coords="180,265,250,275" href="#" onClick="MM_openWindow('[URL unfurl="true"]http://www.camtronics.com','camWindow','toolbar=yes,menubar=yes,status=yes,location=yes,width=750,height=650[/URL] screenX=10, screenY=10,top=10, left=10')">
</map>
<!-- BEGIN BACKGROUND -->
<div id="back1" style="position:absolute; left: 0px; top: 0px; height:530px; width:700px; z-index:10">
<table border=0 cellspacing=0 cellpadding=0>
<tr><td><img src="images/head.jpg" width=700 height=71 border=0 vspace="0" hspace="0"></td></tr>
<tr><td><img src="images/btn/btnbar_top.gif" width=700 height=20 usemap="#topbuttons" name="head" border=0 vspace="0" hspace="0"></td></tr>
<tr width="700"><td><img src="images/body.jpg" width=46 height=336 vspace="0" hspace="0"></td></tr>
<tr><td><img src="images/btn/btnbar_btm.gif" width=700 height=18 usemap="#botbuttons" name="foot" border=0 vspace="0" hspace="0"></td></tr>
<tr><td><img src="images/foot.jpg" width=700 height=75 vspace="0" hspace="0"></td></tr>
</table>
</div>
<!-- END BACKGROUND -->
<div id="piclayer" style="position:absolute; top:110px; left:410px; z-index=20;">
<% if (request.querystring("inc").count > 0) and (request.querystring("inc") = 18) then %>
<img src="<% Response.write strImage %>" usemap="#CamMap" border=0>
<% Else if (request.querystring("inc").count > 0) and (request.querystring("inc") = 2) then %>
<img src="<% Response.write strImage %>" usemap="#PhilMap" border=0>
<% Else %>
<img src="<% Response.write strImage %>"
<% End if %>
<% End if %>
</div>