function goBooking()
{
	var searchDdl = document.getElementById("bookingSearch");
	var search = searchDdl.options[searchDdl.selectedIndex].value;
	var fromtxt = document.getElementById("DPC_bookingFrom");
	var totxt = document.getElementById("DPC_bookingTo");
	var from = fromtxt.value;
	var to = totxt.value;
	var errors = false;
	
	if(search == "none")
	{
		searchDdl.style.background = "#ff0000";
		searchDdl.style.color = "#ffffff";
		errors = true;
	}
	else
	{
		searchDdl.style.background = "#fee3ad";
		searchDdl.style.color = "#E1001A";
	}

	if(from == "Date From")
	{
		fromtxt.style.background = "#ff0000";
		fromtxt.style.color = "#ffffff";
		errors = true;
	}
	else
	{
		fromtxt.style.background = "#fee3ad";
		fromtxt.style.color = "#E1001A";
	}

	if(to == "Date To")
	{
		totxt.style.background = "#ff0000";
		totxt.style.color = "#ffffff";
		errors = true;
	}
	else
	{
		totxt.style.background = "#fee3ad";
		totxt.style.color = "#E1001A";
	}

	if(errors)
		return;

	var monthDayIn = from.substring(0,2);
	var yearMonthIn = from.substring(6,10) + '-' + from.substring(3,5);
	var monthDayOut = to.substring(0,2);
	var yearMonthOut = to.substring(6,10) + '-' + to.substring(3,5);
	
	//var bookingUrl = 'http://www.booking.com/searchresults.html?aid=322463&city=' + city
	//					+ '&checkin_monthday=' + monthDayIn
	//					+ '&checkin_year_month=' + yearMonthIn
	//					+ '&checkout_monthday=' + monthDayOut
	//					+ '&checkout_year_month=' + yearMonthOut
	//					+ '&do_availability_check=1';
						
	var searchUrl = 'http://www.booking.com/searchresults.html?aid=322463&' + search
							+ '&checkin_monthday=' + monthDayIn
							+ '&checkin_year_month=' + yearMonthIn
							+ '&checkout_monthday=' + monthDayOut
							+ '&checkout_year_month=' + yearMonthOut
							+ '&do_availability_check=1';

	window.open(searchUrl);
}