// show msgBox
function msgBox(text){
    jQuery.blockUI({
        message: '<div id="msgboxText"><p>' + text + '</p></div>',
        fadeIn: 500,
        fadeOut: 500,
        timeout: 2000,
        showOverlay: false,
        css: {
            width: '350px',
            padding: '10px',
            border: '3px solid red',
            backgroundColor: '#fff',
            '-webkit-border-radius': '10px',
            '-moz-border-radius': '10px',
            opacity: 1,
            color: '#000'
        }
    }); 
}
