window.onload=init;

function init() {
	var aHrefs = document.getElementsByTagName("A");
	for (a=0; a < aHrefs.length; a++) {
		window.status=aHrefs[a];
		aHrefs[a].onmouseover=hlAHref;
		aHrefs[a].onmouseout=dlAHref;
	}
}

function hlAHref(){
	if (this.title) window.status=this.title+" ("+this.href+")";
	else window.status = this.href;
}
function dlAHref(){
	window.status="";
}
