You need to set the property window.location
and for best results use window.location.protocol and window.location.host
<input type=button value="Close" class="blackBold" onClick="window.location=window.location.protocol +'//'+ window.location.host+'<Computed Value>';">
where computed value could be
"/"+@WebDbName+"/AllCallsByStatusAndOwnerAndVolunteer"
Using window.protocol covers you if the url may be https instead of http.
Notes Domino usually can work out tat http should be https, but it is nice to stick it in.
Hope that is useful.