function changebox(hidebox,showbox)
	{
		document.getElementById(hidebox).style.display = "none";
		document.getElementById(showbox).style.display = "block";
	}
	
function framechk()
	{
		if(top.location != location){
			top.location.href = document.location.href;
		}
	}
