
var popup = null


// Pop up window with details of event / slot
function ShowEventDetails(slotId) {
	var popupUrl = "esEventDetails.asp?slotId=" + slotId


	if (!(popup == null || popup.closed)) {
		// Close the left-open popup so only one up at a time
		popup.close()

	}
	// Show the popup
	popup = window.open(popupUrl,'popupPage','width=340,height=240,top=100,left=100,scrollbars=1')


}

