Write a JavaScript program to show text on status bar.
<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>
