function BPD_color(row, over) {
	if (over) {
		row.style.backgroundColor = '#ec8';
		row.style.cursor = 'pointer';
	} else {
		if (row.className == 'browsing_result_table_body_even') {
			row.style.backgroundColor = '#ddd';
		} else {
			row.style.backgroundColor = '#eee';
		}
	}
}

function BPD_go(url) {
	document.location.href = url;
}
