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