
function displayAndMove(hideid, showid, hashStr) {
	document.getElementById(hideid).className = 'hide';
	document.getElementById(showid).className = 'show';
	location.hash = hashStr;
}
