function go2()
{
	var townId = 1;
	var t0 = document.getElementById('t0');
	
	if(t0 != null && t0.selectedIndex>0 )
	{
		townId = t0.options[t0.selectedIndex ].value;
	}
	else
	(
		townId = document.getElementById('townId').value
	)
				
	var dateFrom = document.getElementById('dateFrom').value;	
	var nights = document.getElementById('nights').value;
	var occupationTypeId = document.getElementById('occupationTypeId').value;
	var stars = document.getElementById('stars').value;
	var currencyId = document.getElementById('currencyId').value;
	var affId = (document.getElementById('affId') != null ? document.getElementById('affId').value : -1);
	var locationId = (document.getElementById('locationId') != null ? document.getElementById('locationId').value : -1);
	var board = (document.getElementById('board') != null ? document.getElementById('board').value : null);
	
    window.location.href = '/search.aspx?townId=' + townId +
		(locationId > 0 ? '&locationId=' + locationId : '') +
        '&dateFrom=' + dateFrom + '&nights=' + (nights > 0 ? nights : 1) + '&occupationTypeId=' + 
        occupationTypeId + '&stars=' + stars + '&currencyId=' + currencyId + 
        (affId > 0 ? '&affId=' + affId : '') +
        (board != null ? '&board=' + board : '') +
        ((townId==2) ? '&online=true' : '');
}

