/*
 *	ES Location interface stuff.
 */ 
 
// Note popup var defined in including pages


// Edit location for locId
function EditLocation(locId) {
	var popupUrl = "esLocationEdit.asp?locId=" + locId;
	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=640,height=400,top=100,left=100,scrollbars=1');
}
