File: D:/web/castironradiatorcentre/2024-07-02/prev/inc-template-best-sellers.asp
<%
Sub DummyHTMLHeaderToFoolDreamweaverBestSellers
%>
<link href="styles.css" rel="stylesheet" type="text/css">
<%
End Sub
' --- START OF BEST SELLERS TEMPLATES --- '
Sub ShowBestSellersEmpty
' html to show if no best sellers to go here '
%>
<%
End Sub
Sub ShowBestSellersHeader
%>
<table width="141" border="0" cellspacing="0" cellpadding="0">
<tr><td class="topsell_heading">Top <%=GetBestSellersMax%> Best Sellers</td></tr>
<tr><td background="images/bkd-topsell.gif">
<table width="139" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td class="topsell">
<!-- Scrolling Text Start --!> <marquee scrollamount="1" scrolldelay="10" direction="up" hspace="5" width="140" height="160" loop="-1" onMouseover="this.scrollAmount=0"
onMouseout="this.scrollAmount=1">
<!-- Scrolling Text End --!>
<%
End Sub
' (SS,18/2/05) added AMainGroup '
Sub ShowBestSellersItem(ANumber, AProductCode, AProductDashAsUnderscore, AProductCodeURLEncoded, AProductName, APrice, AMainGroup, AMainCategory, AMainSubcategory)
%>
<!-- START OF BEST SELLERS ITEM -->
<div id="topsell">
<span class="topsell_no"><%=ANumber%>. </span><span class="topsell_prodname"><a href="<%=GetProductLink(AProductCode)%>"><%=AProductName%></a></span><br>
<!-- Display brand <span class="topsell_brand"><%=AMainGroup%></span><br> -->
<!-- Display price <span class="topsell_price"><%=APrice%></span> -->
<br>
</div>
<!-- END OF BEST SELLERS ITEM -->
<%
End Sub
Sub ShowBestSellersFooter
%>
</marquee>
</td>
</tr>
</table>
</td></tr>
<tr><td align="center" valign="bottom"><img src="images/btm-topsell.gif"></td></tr>
</table>
<%
End Sub
' --- END OF BEST SELLERS TEMPLATES --- '
If Not ForProductList Then ShowBestSellers
%>