Código HTML:
<html>
<head>
<script type="text/javascript">
function abc(esto)
{
// lo que tu quieras
alert('vamos a google');
location.href=esto.href;
return false;
}
</script>
</head>
<body>
</body>
<a href="http://www.google.es" onclick="return abc(this)">enlace</a>
</html>