Use this:
<SCRIPT language="JavaScript">
//--
//-- Script to give a link a description visible in the status bar.
//-- onMouseover="write_it('Add your text here');return true;" //-- onMouseout="write_it('');return true;"
//--
function write_it(status_text)
{
window.status=status_text;
}
</SCRIPT>
Put that between the head tags...
---------------------------------------------------------------------
<a href=" " onMouseover="write_it('What you want to appear!');return true;" onMouseout="write_it('');return true;">Link Description</a>
Try that,
Hope that helps you..
Ben