Well...I get the picture called "dashboard.jpg", but not the other transparent gif (which I created at 500 X 500 pixels). Therefor currently with the code below, I cannot click on any "hidden" link.
I think there's something missing...can you find it?
<%@ Language="VBScript"%>
<%
' convert input string to unicode
Function StrToUnicode(strIN)
dim zz
dim tmp
tmp = ""
for zz = 1 to len(strIN)
tmp = tmp & "&#" & AscW(Mid(strIN,zz,1)) & ";"
next
StrToUnicode = tmp
end function
%>
<HTML>
<HEAD>
Here's my page...
</HEAD>
<script type="text/javascript">
function openpopup(){
var popurl="congrats.html"
winpops=window.open(popurl,"","width=400,height=438,")
}
</script>
<style type="text/css">
img.x
{
position:absolute;
left:100px;
top:100px;
z-index:99
}
</style>
<body>
<%
StrToUnicode("<a href='javascript

penpopup()'>") & vbCrlf
StrToUnicode("<img class='x' border='0'")
StrToUnicode(" src='hidden_picture.gif'")
StrToUnicode(" width='500' height='500'>" & vbCrLf)
StrToUnicode(" </a>") & vbCrLf
%>
</body>
<img src="dashboard.jpg" width="900" height="650">
</html>