| <%=DisPrepText(Highlighter(txtDescription,txtKey,color))%> |
<%Sel="SELECT * FROM UP_Specs WHERE nProductID=" & ProductID & " ORDER BY nSortOrder"
rs.Open Sel,DB,1,3
If Not rs.EOF then%>
| |
| Specifications... |
<%While Not rs.EOF%>
| |
<%=Highlighter(rs("txtSpecification"),txtKey,color)%> |
<%rs.MoveNext
Wend
rs.Close
End If
If txtManufacturer<>"" AND txtManURL<>"" then%>
| Manufactured by <%=Highlighter(txtManufacturer,txtKey,color)%> |
<%ElseIf txtManufacturer<>"" then%>
| Manufactured by <%=txtManufacturer%> |
<%End If%>
|