Link Button
Using ButtonType="Link" you can have a button do what an ASP NET HyperLink controls does. You have the familiar properties NavigateURL and Target.
<yui:Button ID="btnLink" Text="Go to google"
Target="_blank" ButtonType="Link"
NavigateUrl="http://www.google.com"
runat="server"
/>