Write a program to display a javascript status bar message whenever your users hover over your hyperlinks.
<html> <head> <title>Example</title> <script type="text/javascript"> function show_status() { window.status="hi i am status bar"; return true; } </script> </head> <body> <a href="#" onmouseover="show_status();">link</a> </body> </html>