Links with Custom Status-Bar Messages
<html> <head> <title>window.status Property</title> </head> <body> <a href="http://www.java2s.com" onmouseover="window.status = 'Go to www.java2s.com'; return true;">Home</a> <p><a href="http://mozilla.org" onmouseover="window.status = 'Visit Mozilla Home page. (mozilla.org)'; return true;">Mozilla</a></p> </body> </html>