<!--
// Firefox disables JS status bar changes by default
// enable this with
//  Edit->Preferences->Web Features->Enable JavaScript(Advanced...)
//	set "Change status bar text"
//usage: <a href="page.html" onMouseOver='return msg("helpful text")' onMouseOut='clr()' >page description</a>
function msg(txt) {
	self.status = txt;
	return true;
}
function clr() {
	self.status = "";
}
//-->
