
var divSource;

function swapDiv(divTarget)
{
	divSource.style.display = "none";
	divTarget.style.display = "inline";
	divSource = divTarget;
}
