/ Published in: ASP
Expand |
Embed | Plain Text
<% Dim fullImg: fullImg = request.querystring("file") %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Adoption Network</title> <script type="text/JavaScript"> function resizeImg(img) { var oImg = new Image(); oImg.src = img; if (oImg.complete) { window.resizeTo(oImg.width+8,oImg.height+51) } } </script> </head> <body onLoad="resizeImg('<%=fullImg%>');" style="margin:0px;"> <img src="<%=fullImg%>" border="0" id="ShowImg" onClick="window.close();" style="cursor:pointer;" alt="close window" title="close window"> </body> </html>
You need to login to post a comment.
