function showPopup(thisId) {
	//Displays a popup box
	popupObj = document.getElementById(thisId)
	popupObj.style.display = "block";
}

function showPopupIframe(thisId, iframeId, iframeUrl) {
	//Displays a popup box
	popupObj = document.getElementById(thisId)
	popupObj.style.display = "block";
	
	iframeObj = document.getElementById(iframeId)
	iframeObj.src = iframeUrl;
}

function hidePopup(thisId) {
	//Displays a popup box
	popupObj = document.getElementById(thisId)
	popupObj.style.display = "none";
}
