function showPopUp(thisPopup){
	document.getElementById(thisPopup).style.display = "block";
}

function hidePopUp(thisPopup){
	document.getElementById(thisPopup).style.display = "none";
}


