function structure_list_mousedown(href) {
	if(event.button == 1) {
		// go to link!
		document.location.href = href;
	} else {
		return true;
	}
}

