function popUpOpen(ID)
{
	var maDiv = document.getElementById(ID);
	if(maDiv != null)
		maDiv.style.display = "block";
}
function popUpClose(ID)
{
	var maDiv = document.getElementById(ID);
	if(maDiv != null)
		maDiv.style.display = "none";
}