var ___DisplayCurrent___Timer = false;
var ___DisplayCurrent___OldBox = "PlaningPreparing";
var ___DisplayCurrent___OldBoxPIC = "ChangingPIC";

function DisplayCurrent()
{
	if(!___DisplayCurrent___Timer)
	{
		___DisplayCurrent___Timer = true;
		window.setTimeout(DisplayCurrent, 50);
		return;
	}
	___DisplayCurrent___Timer = false;
	var temp = window.location.href.split("#");
	
	if(temp.length > 1 && temp[1] && document.getElementById(temp[1]))
	{
		document.getElementById(___DisplayCurrent___OldBox).style.display = "none";
		document.getElementById(temp[1]).style.display = "block";
		___DisplayCurrent___OldBox = temp[1];
	}
	if(temp.length > 1 && temp[1] && document.getElementById(temp[1] + "PIC"))
	{
		document.getElementById(___DisplayCurrent___OldBoxPIC).style.display = "none";
		___DisplayCurrent___OldBoxPIC = temp[1] + "PIC";
		document.getElementById(temp[1] + "PIC").style.display = "block";
	}
}