In the first example, the value will be returned from the onclick handler. This can be used to return false , which will prevent the default behavior.
<a href="#" onclick="return Buy();">» <b class="font_bigger"><span id="buy_title">Buy</span> for <span class="points_in" id="buy_value">$1,691</span></b></a>
In the second example, the event handler will simply fire, the event will propagate, and the default behavior will be executed regardless of any value returned by the event handler.
<a href="#" onclick="Buy();">» <b class="font_bigger"><span id="buy_title">Buy</span> for <span class="points_in" id="buy_value">$1,691</span></b></a>
source share