$(document).ready(function() {
    $('#submenu').corner('bottom');

    //if ($('#cbxPUL').attr('checked') == false)
      //  alert('test')

    $('#appointmentFormSubmit').click(function() {        
        $.post('/handlers/booking/DoBookingHandler.ashx', $('form').serialize(), function(data) {
            $('#appointmentForm').html(data);
        });
    });
});

function ShowBookingForm(id) {
    $('#bookingid').attr("value",id);
    $('#appointmentForm').show();
}

function EnableButton(btn, enable) {

    if (enable == true)
        btn.attr('disabled', '');
    else
        btn.attr('disabled', 'disabled');           
}
