Vulkan,
Ну вот, всю тему запалил, теперь своей головой думать не будет.
А теперь усложняем
<script type="text/javascript">
window.onload = function() {
var links = document.getElementsByTagName('a'),
i = links.length;
while(i--) {
links[i].onclick = function (e) {
alert('Новый адрес - ' + e.target.href);
return false;
}
}
}
</script>
<a href="http://test.ru/link1" onclick="document.location.href='link10'">one</a>
<a href="http://test.ru/link2" onclick="document.location.href='link10'">two</a>
<a href="http://test.ru/link3" onclick="document.location.href='link10'">three</a>
^^