function show_dd(id){
	document.getElementById(id).style.display = "block";
}
function hide_dd(id){
	document.getElementById(id).style.display = "none";
}
