JavaScript DHTML/Event onMethod/onActivate
"onActivate" Example
<head>
<script language="JavaScript">
function function1() {
window.open("http://www.wbex.ru/", "", "width=700, height=600, resizable, scrollbars")
}
</script></head>
<body>
<label for="myL" accesskey="L">Press Alt+L to invoke the link </label>
<a id="myL" href="http://www.wbex.ru/" target=_blank onActivate="function1()">
www.wbex.ru
</a>
</body>