Use Statusline Together With Links 
You can and should use the statusline together with links. When users move the mouse over a link, a little description of what the link does, should appear in the statusline. Browsers normally displays the url to the link.
Just add the following code to a link.
onmouseover="window.status='description of link'; return true;" onmouseout="window.status=' ';
|