last = 'startText';

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