function show(toShow) {
	showWhat=document.getElementById(toShow);
	showWhat.style.display='block';
}

function hide(toHide) {
	hideWhat=document.getElementById(toHide);
	hideWhat.style.display='none';
}
