Event not found

Sorry, we couldnt find that event.

Go back to events

Check out some of these other events

// Function to handle URL parsing function findLocationByUrl(url) { var page = ""; var arUrl = url.split("/"); var newArray = arUrl.filter(function(element) { return element !== "" }); return newArray.length > 0 ? newArray[newArray.length - 1] : "" }