function show(id){
	document.getElementById(id).style.display = 'block';
}
function hidden(id){
	document.getElementById(id).style.display = 'none';
}

