function enviaPRIV(data){
    dojo.xhrPost({
    url: '/foroxp.nsf/privmsg?createdocument',
    content: data,
    
    load: function (data) {
    location.reload();
    } ,
    error: function (error) {
    console.error ('Error: ', error);
    }
    });
    } 