JavaScript Program to Show text on status bar

Write a JavaScript program to show text on status bar.



Source Code
<html>
<head>
    <title>Show message on Status bar</title>
    <script>
        function display(link)
        {
            window.status = 'Click here to go to Google';
        }
    </script>
</head>
<body onload="showStatus()">
<a href="http://www.google.com" onmouseover="display(this)">Google</a>
</body>
</html>
Output