/* Due to bugs in IE5 and NS6, window.status cannot be set
 * directly in a link ("<a>" tag).   To work around, set status with a tiny delay.
 * The status can be cleared directly in the link itself.
 *
 * JC 27/11/2002
 * EXAMPLE:
 * <a href="x.htm" onMouseOver="setStatus('status message');return true;" onMouseOut="window.status='';return true">link text</a>
 */
function setStatus( lp_text ) 
{
   window.setTimeout('window.status="' + lp_text + '"', 1);
   return true;
}

