the _onclick parameter is "translated" to just a plain onclick attribute of the tag you're using.
When you do in HTML <a href='#' onclick='test'>mylink</a> nothing will
happen.
an _onclick of "alert('clicked me')" will fire an alert box (language:
javascript).
What do you need to do upon clicking that button ?
--

