$(document).ready(function(){
	   
    $(".run_pdl_button").hide();

    $("#create_profile").click(function(){
    	$('#popup').dialog('open');
    });

    
   
    $(".run_pdl_button").click(function(){
    //	run_pdl();
    });
    $('#popup').dialog({
        autoOpen:false,
        bgiframe: true,
        modal: true,
        width:'700px',
        resizable:false,
        title:'Create New Profile'
    });
    $("#message_dialog").dialog({
        autoOpen:false,
        bgiframe: true,
        modal: true,
        width:'300px',
        resizable:false,
        buttons: {
            Ok: function() {
                $(this).dialog('close');
            }
        }
    });
});

