function changebox(hidebox,showbox)
	{
		document.getElementById(hidebox).style.display = "none";
		document.getElementById(showbox).style.display = "block";
	}