<html>
<head>
<title></title>
<script
type="text/javascript">
function
HelloWorld()
{
myname = prompt("What
is your name?", "");
alert("Nice to meet you, "
+ myname);
}
</script>
</head>
<body>
<a
href="javascript:HelloWorld()">Welcome</a>
<script
type="text/javascript">
function
HelloWorld()
{
alert("Ouch!");
}
</script>
</head>
<body>
<a
href="" onMouseOver="Ouch!()">Come
over here!</a>
<script
type="text/javascript">
function
HelloWorld()
{
alert("Ah, much better);
}
</script>
</head>
<body>
<a
href="" onMouseOut="Ah, much
better()">Come over here!</a>
<script
type="text/javascript">
function
HelloWorld()
{
alert("Gee, thanks");
}
</script>
</head>
<body>
<a
href="" onClick="Gee, thanks()">Come
over here!</a>
</body>
</html>