function show_drop_down(foo) {
	document.getElementById(foo+"_drop_down").style.visibility = "visible";
}

function hide_drop_down(foo) {
	document.getElementById(foo+"_drop_down").style.visibility = "hidden";
} 
