function bb_check_availability(resort) {
  var mths = new Array();
  mths['01'] = "Jan";
  mths['02'] = "Feb";
  mths['03'] = "Mar";
  mths['04'] = "Apr";
  mths['05'] = "May";
  mths['06'] = "Jun";
  mths['07'] = "Jul";
  mths['08'] = "Aug";
  mths['09'] = "Sep";
  mths['10'] = "Oct";
  mths['11'] = "Nov";
  mths['12'] = "Dec";
  var bb_dateFrom = document.getElementById('datepicker').value;
  var dateName = "";
  if(bb_dateFrom!="") {
    bb_date_bits = bb_dateFrom.split('/');
    dateName = bb_date_bits[0] + '+' + mths[bb_date_bits[1]] + '+' + bb_date_bits[2];
  }
  //window.location = "http://www.thebookingbutton.com.au/properties/" + resort + "?start_date=" + dateName;
  window.location = "http://www.absolutealpine.com.au/book-now/";
  //window.open ("http://www.thebookingbutton.com.au/properties/" + resort + "?start_date=" + bb_dateFrom,"bookingwindow","menubar=yes,scrollbars=yes,location=yes,status=yes,toolbar=1,resizable=yes");
}
