function toggleDisplay(elementName)
{
	if (document.getElementById(elementName).style.display != "block")
	{
		document.getElementById(elementName).style.display = "block";
	} else {
		document.getElementById(elementName).style.display = "none";
	}
}

function navigationAlert()
{
	var x = confirm("Are you sure you want to navigate away from this page? \n\nYou will lose any information you have entered in.");
	
	if (x) { return true; } else { return false; }
}

function FillSelectList(OptionList, OptionItems)
{
	// alert("cleared it");
	ClearSelectList(OptionList);

	for (x = 0; x < OptionItems.length; x++)
	{
		OptionList[x] = OptionItems[x];
	}
}

function ClearSelectList(OptionList)
{
   for (x = OptionList.length; x >= 0; x--)
   {
	  OptionList[x] = null;
   }
}

