LPMJ Example 14-13 (Click on the icon to view the source for copy and pasting)
<html>
	<head>
		<title>Link Test</title>
	</head>
	<body>
		<a id="mylink" href="http://mysite.com">Click me</a><br />
		<script>
			url = document.links.mylink.href
			document.write('The URL is ' + url)
		</script>
	</body>
</html>