Is this what you mean.
----------------------page 1------------------------
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<%
'Execute your sql statement.
while not rs.EOF
RESPONSE.WRITE("<img src=""generic.jpg"" width=""200"" height=""150"" onClick=""MM_openBrWindow('specificpic.asp?picID=" & rs("ID") & "','Picture','width=200,height=200')""> ")
rs.movenext
wend
%>
</body>
</html>
----------------------end page 1------------------------
----------------------pop-up page------------------------
<%
OPTION EXPLICIT
Dim pic
pic = Trim(Mid(Request.QueryString("picID"), 1, 8))
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<% response.write("<img src=""" & "picFolder/" & pic & ".jpg""" & "width='300' height='200' align='center' >")%>
</body>
</html>