// JavaScript Document

function venueJump() {
	// filter the venu page by country or day open
	var country = document.getElementById("countryMenu") ;
	var days = document.getElementById("dayMenu") ;

	window.location.href = 'venues.php?ctry=' + country.value + '&day=' + days.value ;
	
}