Save this in "inc_func_common.asp":
Function M_Image(intQty,strMImage)
For intMI=1 to intQty
Response.Write "<img src=""" & strImageURL & "&strMImage&"" />"
Next
End Function
Call the function in your code like this:
M_Image(5,"blahdeblah.gif")
For intMI=1 to 5
Response.Write "<img src=""" & strImageURL & "blahdeblah.gif"" />"
Next