function onClickBrochureGoButton (urlPrefix, urlSuffix)
{
    if (document.searchForm.type.value.length==0 && document.searchForm.dest.value.length==0) {
        alert("You must select a Destination City or an Experience Type");
        return;
    }
    var url;
    url=(document.searchForm.type.value.length==0)?document.searchForm.dest.value:document.searchForm.type.value;
    url = urlPrefix + url + urlSuffix;
    window.location.href=url;
}

$j(document).ready(initBrochure);

function initBrochure()
{
	$j.ajax({
		type: "GET",
		url: "/travel/portlets/packages/brochures/dropdown.jsp",
		dataType: "html",
		success: function(html)
		{
			var searchStart = 'brochures-';
			var searchEnd = '/global/en';
			
			$j('div').filter('.brochure').html(html);
			$j('div.findabrochure select').val(window.location.href.match(searchStart+"(.*)"+searchEnd));
		}
	});	
}