/**
 *
 * @access public
 * @return void
 **/
function getBlockParams(msg, hd){

    if (!hd || hd.length != 2 || hd[0] == '' || hd[1] == '')
    {
        hd = ['<h1>', '</h1>'];
    }

    return {
        message: hd[0] + msg + hd[1],
        css: {
            border: 'none',
            padding: '15px',
            backgroundColor: '#000',
            '-webkit-border-radius': '10px',
            '-moz-border-radius': '10px',
            opacity: '.4',
            color: '#fff'
        }
    };
}