function 
reachURL(
	o /** a href html node */
	)
{
	var w = window.open(o.href, o.title);
	w.focus();
	return false;
}