﻿function webApp_dialogExtender_onLoad(containerId) {
    // Make the dialog draggable by the title panel
    $('#' + containerId).draggable({
        handle: '.dialogTitle'
    });
}

function webApp_dialogExtender_onShow(containerId) {
    /*$('#' + containerId).bind('keydown', function () {
        alert($(this).attr('id'));
    });*/
}
