seems like the issue is in using a <form> since the method below )using button in conjunction with onkeydown instead of onclick to replace submit) also works outside of aware, but inside has the same effect.
<form>
<input type="text" name="goals" id="goals" value="Fast Find" onfocus="if(this.value==this.defaultValue)this.value=''" onblur="if(this.value=='')this.value=this.defaultValue" size="18" title="Contains Search for Active Goals by Name, Owner, or Record ID">
<input class="go_button" type="button" onkeydown="var params = {}; params ['Parameter'] = document.getElementById ('goals').value; AwareApp.runQueryWithParams('FastFind', params, 'new_tab'); return false;" value="Go" name="find" title="Fast Find casts a wide net...">
</form>