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