File: D:/web/groundscrewcentre/temp.asp
<div id="product-detail-price-info">
Price: <% ShowProductPriceV2 ASalePrice, AStdPrice, True, True, "saveprice,savepc" %>
<%CustomShowPricePerSection AProductID, AProductCode, False%>
</div>
<div id="product-detail-delivery-info">
<%=GetStockInfo%>
</div>
<div id="product-detail-add-to-basket">
<%If Not ProductDiscontinued(AProductCode, AProductName) Then%>
<%If InStock(ANumInStock) Or IsStockAvailable Then%>
<form name="frmBasket" action="<%=GetProductLink(AProductCode)%>" method="post" class="nospace">
<%ShowProductOptions AProductID%>
Quantity:
<input type="text" size="1" value="1" name="qty" maxlength="4" />
<a class="button" onclick="<%=GetBuyOLink(AProductID)%>">Add to basket</a>
</form>
<%Else%>
<%ShowStockNotificationLink(AProductCode)%>
<%End If%>
<%End If%>
</div>