Ah well that is easy then just re-use the code from the google base feed!
C#/VB.NET Code:
<xsl:choose>
<xsl:when test="number(SalePrice)=0">
<xsl:choose>
<xsl:when test='format-number((Price * 1.175),"#.00") > 74.99'>
<div class="productfreedelivery"> free delivery </div>
</xsl:when>
<xsl:otherwise>
IT IS NORMAL PRICE BUT NOT FREE SHIPPING
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test='format-number((SalePrice * 1.175),"#.00") > 74.99'>
<div class="productfreedelivery"> free delivery </div>
</xsl:when>
<xsl:otherwise>
IT IS SALE PRICE BUT NOT FREE SHIPPING
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
I highly suggest changing the parts in capitals