
function swap(hide_id, show_id)
{
	hide(hide_id);
	show(show_id);
}

function hide(hide_id)
{
	document.getElementById(hide_id).style.display = 'none';
}

function show(show_id)
{
	document.getElementById(show_id).style.display = '';
}
