// JavaScript Document
function OnChangeAccomo(dropdown)
{
	var SelValue = dropdown.value;
	var baseURL  = "http://www.discoverireland.ie/Search-Results/List.aspx?Search=1&CategoryID=400&LocationID="+SelValue;
	document.getElementById('accomo_link').href = baseURL;
	document.getElementById('accomo_link').target='_blank';
	return true;
}


function OnChangeEating(dropdown)
{
    var SelValue = dropdown.value;
    var baseURL  = "http://www.menupages.ie/"+SelValue;
	document.getElementById('eating_link').href = baseURL;
	document.getElementById('eating_link').target='_blank';
	return true;
}
