Chris,
Here's what I'm trying, but I'm not able to view the .asp page...Any idea why?
<%@ Language="VBScript"%>
<%
' convert input string to unicode
Function StrToUnicode(strIN)
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>
<TITLE>Look On This Page For Easter Egg</TITLE>
</HEAD>
<!-- Script that generates congrats window if egg is found -->
<%
<SCRIPT Language="Javascript">
<script>
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>
<%
'response.write StrToUnicode("<!-- smaller transparent gif-->") & vbCrlf
'response.write StrToUnicode("<a href='javascript

penpopup()'>") & vbCrlf
'response.write StrToUnicode("<img class='x' border='0'")
'response.write StrToUnicode(" src='hidden_picture.gif'")
'response.write StrToUnicode(" width='50' height='50'>" & vbCrLf
'response.write StrToUnicode(" </a>") & vbCrLf
%>
<!-- Main (larger) image -->
<img src="dashboard.jpg"
width="900" height="650>
</body>
</html>