//jQuery各関数定義
$(function() {
    if ($("#dialog") == null) return; 
    //Popupフォームの表示
    $('#dialog').dialog({
            autoOpen: false,  // hide dialog
//            bgiframe: true,   // for IE6
            resizable: false,
            hasTitle:false,
            title:false,
            modal: true,//
            width: 760,
            overlay: {
            backgroundColor: '#000',
            opacity: 0.5
		},
        buttons: {
            Close: function() {
                $(this).dialog('close');
            }
        },
        open: function(){
            $("#dialog").load(null, null, function() {
                $("#mylistloading").hide();
            });
        }
    });
});

