MessageBox 클래스
alert example
mc.Message.alert({
    title: {text: 'alert 창'},
    html: '버튼을 클릭하세요',
    buttons: {ok: '확 인'},

    method: function(type, value, el, that, e){
        mc.resultShow(type)
    },
    scope: this
})


- 브라우저창 중앙에 표시됩니다.
- 확인 버튼을 클릭하면 method가 실행됩니다.