
function show_hint(id) {
	document.getElementById(id).style.display = 'inline';
}

function hide_hint(id) {
	document.getElementById(id).style.display = 'none';
}