Hola!
Prueba con esto, debería funcionar :)
Código:
<form method="POST" action="confirmapostal.asp">
<table border="1" width="95%" bgcolor="#FFFFCC">
<%
contador=0
do while not rs.eof
contador = contador+1
Response.Write "<tr>" & VbCrlf
Response.Write "<td width=33% align=center>" & VbCrlf
Response.Write "<img border=0 src=" & urlminiatura & rs("url") & ">" & VbCrlf
Response.Write "<BR>" & VbCrlf
Response.Write "<input type=radio value=" & rs("id") & " name=id checked>" & VbCrlf
Response.Write "</td>" & VbCrlf
rs.movenext
if contador > 3 then
contador=0
Response.Write "</tr><tr>" & VbCrlf
loop
rs.close
%>
Un saludo.