function toggleDisplay(which, which2, text)
{
	if (which.style.display == "none")
	{
		which.style.display = "block";
		which2.style.display = "block";
	}
	else
	{
		which.style.display = "none";
		which2.style.display = "block";
	}
	document.getElementById("errorText").innerHTML = text;
}

function displayPopup(which, which2, text)
{
	which.style.display = "block";
	which2.style.display = "block";
	document.getElementById("errorText").innerHTML = text;
}

function hidePopup(which, which2, text)
{
	which.style.display = "none";
	which2.style.display = "none";
}