function change_region() {
	AjaxRequest.post({
		'url' : '/venues/remove-city',
		'onSuccess' : function(req) { 
			//document.getElementById('column1').innerHTML = req.responseText;
			location.href = '/venues';
		}
	});
}

	function venue_click(venue_ide) {
		location.href = '/venue/' + venue_ide;
	}

function filter_venues(theform) {
	theform.action = '/venues/ajax/grid';
	theform.method = 'post';
	document.getElementById('column2').innerHTML = '<img src="/images/loading.gif" />';
	AjaxRequest.submit(theform,{
		'onSuccess' : function(req){
			document.getElementById('column2').innerHTML = req.responseText;
		}
	});
}//function	
