function ratingsDisplayed(totalReviewsCount, avgRating, ratingsOnlyReviewCount, buyAgainPercentage, productID)
{
	if (totalReviewsCount > 0) {
		var bvRevCntr = document.getElementById("BVRRContainer");
		if (bvRevCntr) { bvRevCntr.style.display = "block"; }
		var bvSVPLink = document.getElementById("BVRRLinkContainer");
		if (bvSVPLink) { bvSVPLink.style.display = "block";}
	}
	// Other custom items leveraging these values.
	// TODO: insert Web Analytics tracking here
	
	// createProductViewTagOnLoad has been moved to "ProductDetail.jsp" and "COMShopSlipCoverBV.jsp"
}

