Here is one way to use the HTML widget in ParaSQL to make something that looks like a button but acts like a link:
------------- begin html snippet ---------------
<div class='BlueButton' onclick='{
var a = document.createElement("a");
a.click();
}'>Report a Bug</div>
--------------- end of html snippet ------------
The resulting button looks like this:
