If your child page (child.html) is located at same domain as parent page, you can call a parent window's function from child.html.
In the child page (child.html) :
<a href="..." onclick="parent.callFromChildPage('ABC')">Button Title</a>
And, In the parent page (parent.html) :
<script language="javascript">
function callFromChildPage(a_value){
alert("A value from child window is :" + a_value); // 'ABC'
}
</script>
And also, if you can use jQuery in the child page (child.html), you can set parent page's element directly as follows:
<a href="..." onclick="$('#test', window.parent.document).html('ABC');">Button Title</a>