function dot_hl (dot_id) {
	document.getElementById(dot_id).src = 'images/key_red.gif';
}

function dot (dot_id) {
	document.getElementById(dot_id).src = 'images/key.gif';
}

function switch_search (show, hide) {
	document.getElementById(show).style.display = '';
	document.getElementById(hide).style.display = 'none';
}