      
    function msg_modal_open(msg, titol, funcio) {
        titol = titol === undefined ? 'Error' : titol;
        if(!$("#msg_modal").length) {
            var str_html = "<div id='msg_modal' title='"+titol+"' class='msg_modal'><p>"+msg+"</p></div>";
            $("body").append(str_html);
        }
        $("#msg_modal").dialog({
            modal: true,
            buttons: {
				Ok: function() {
				    if (typeof funcio == "function") funcio();
					msg_modal_close();
				}
			}
        });        
    }
    
    function msg_modal_close() {
        $("#msg_modal").dialog("close");
        $("#msg_modal").remove();
    }  
    
    
      

