//file:		lib_c_nostatus.js
//type:		client-side javascript
//for:		function to turn off the status message on hrefs
//
//mods:
//11/29/01 10:45 JC Lango, created
//11/29/01 10:53 JC Lango, updated

//usage: <a href="blah" onmouseover=return(NoStatus())>
function NoStatus(){
	window.status="";
	if(navigator.appName!="Netscape")
		window.event.cancelBubble=true;
	return(true);
}

