<html> <head> <title>A Simple Page</title> <script language="JavaScript"> function overMessage() { alert("click on it!"); } </script> </head> <body> <a href="http://www.java2java.com" onMouseover="overMessage()">java2s.com</a> </body> </html>