JavaScript DHTML/Event onMethod/onFocusOut
"onFocusOut" Example
<html>
<head>
<script language="JavaScript">
function function2() {
alert("<a> element lost focus")
}
</script>
</head>
<body>
<a id="myL" href="http://www.wbex.ru/" target=_blank
onfocusout="function2()">wbex.ru
</a>
</body>
</html>