function dateFormRedirect(form) {
	var form = jQuery(form);
    var monthObj = document.getElementById('month');
    var dayObj = document.getElementById('day');
    var yearObj = document.getElementById('year');

    var month = monthObj.options[monthObj.selectedIndex].value;
    var day = dayObj.options[dayObj.selectedIndex].value;
    var year = yearObj.options[yearObj.selectedIndex].value;

	form.prev(".date-form-text").html('');
	if ('null' == year || 'null' == month || 'null' == day) {
		form.prev(".date-form-text").html('All fields required').css('color', '#8A1F11');
		
		return false;
	}
    window.location = '/check-availability/?date=' + month + '/' + day + '/' + year;    
}
