<%
' Seleciona os Planos
SQL = "Select Id,Plano,Titulo,Parcelas, Preco "
SQL = SQL & "From Planos "
SQL = SQL & "Where Destaque = True "
SQL = SQL & "Order By Ordem Asc "
Set Rs = Db.Execute(SQL)
Contador = 0
While Not Rs.Eof
%>
<%If Contador <> 0 Then%>

/css/imagem/linha.gif" alt="linha" />
<%End If%>
/css/imagem/desenho.gif" alt="" />
/<%=Application("DIR_IMG")%>/Upload/<%=RS("Plano")%>.gif" alt="" />
<%=RS("Plano")%>
<%=RS("Titulo")%>
<%
Contador = Contador + 1
Rs.MoveNext
Wend
RS.Close
Set RS = Nothing
%>