function switchContents (fo_id, to_id)
{
	document.getElementById(fo_id).style.display = 'none';
	document.getElementById(to_id).style.display = 'block';
}
