// POPUP CONTROLLS
function popup(pPopupId, pDisplay)
{
	// ID of the Popup.
	var vPopupId = document.getElementById(pPopupId);
	
	// Set the display to either none or block.
	vPopupId.style.display = pDisplay;
}

































