﻿/*
all pages - Daylesford GetAways functions
*/

// jQuery document ready
$(document).ready(function () {
    $("#lnkMakeABooking").click(function (e) { openBookOnLine(); e.preventDefault; });
});

function openBookOnLine() {
    booking_win = window.open('zenbookings.html', 'dayget_window', 'height=640, width=1000,resizable=yes,scrollbars=yes,top=50,left=100');
}

function openTermsAndConditions() {
    window.open('http://www.dayget.com.au/BookingTermsandConditions.aspx?Ispopup=N');
}

