﻿
function ShowBusiness(businessID) {
	ShowPopup("/database/popup_business.php?id=" + businessID);
	}





function ShowPopup(whichURL) {
	var newPopup = document.createElement("iframe");
	newPopup.id = "popupFrame";
	document.getElementById("pageContent").appendChild(newPopup);
	newPopup.src = whichURL;
	}


	
function ClosePopup() {
	var whichPopup = document.getElementById("popupFrame");
	whichPopup.parentNode.removeChild(whichPopup);
	}




