Here is the code for the image
[HTML]
<tr>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000">
<p align="center">
<img border="0" src="http://www.afefilters. com/images/prodryslogo.gif " width="167" height="62"></td>
</tr>
[/HTML]
The code that I made for the pop up is as followed...
Now the code that goes in the head to make this work is here.
Now the first code is the PICTURE it has NO LINK.. I need to make it open that link in the code I wrote in the 2nd code box... so it will pop up in the 3rd code box size that I have as well... any help please?
I cant seem to get the IMAGE to become a link...
[HTML]
<tr>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000">
<p align="center">
<img border="0" src="http://www.afefilters. com/images/prodryslogo.gif " width="167" height="62"></td>
</tr>
[/HTML]
The code that I made for the pop up is as followed...
Code:
<p><span onclick='loadPage("http://afefilters.com/prodrys/")'></span></p>
Code:
<script type="text/javascript"> function loadPage(URL) { var hi = screen.availHeight * 0.9; var wi = screen.availWidth * 0.6; var str = "height=" + hi + ",width=" + wi; if (window.screen) { var ah = screen.availHeight - 40; var aw = screen.availWidth - 7; var xc = (aw - wi) / 2; var yc = (ah - hi) / 2; str += ",left=" + xc + ",top=" + yc ; str += ",resizable=yes,scrollbars=yes"; } win=window.open(URL, '', str); } </script> <style> span:visited{text-decoration:none; color:#293d6b; } span:hover{text-decoration:underline; color:#293d6b; } span {margin:0 0 0 10px;color:#293d6b; cursor: hand; width:85px;} </style>
I cant seem to get the IMAGE to become a link...
Comment