
// TODO: Need to come up with mechanism to ensure the onload is not overwritten
EvaaWindow.Events.register("load", EvaaFE.onload);

function Evaa_ClearAllMessages(){
	EvaaFE.Feedback.clear();

	//Put code to clear all other messages here (pop-up messages)

}


function Display(itemToDisplay, onCondition, actualValue)
{
	var elementToDisplay = document.getElementById(itemToDisplay);
	if (actualValue == onCondition)
	{
		elementToDisplay.style.display = 'block';
	}
	else
	{
		elementToDisplay.style.display = 'none';
	}
}

