function status_init() {
	var a, stat;
	var anchors = document.getElementsByTagName("a");
	for ( var i=0; (a=anchors[i]); i++ ) {
		stat = a.title;
		if ( stat != "" && stat != null ) {
			a.onmouseover = swap_it;
			a.onmouseout  = clear_it;
		}	
	}
}
function swap_it() {
	window.status = this.title;
	return true;
}
function clear_it() {
	window.status = "";
	return true;
}

