Need a solution for a problem urgently

Need a solution for a problem urgently

function initiateMadness() {
var sparta = {
        name : "Sparta"
    };

    function madness() {
    alert("THIS. IS. " + this.name.toUpperCase() + ".");
}

document.onclick = makeAMessenger(madness, sparta);
}

initiateMadness();












 
Write a makeAMessenger function in the global scope so that when the user clicks the document, "THIS. IS. SPARTA." is alerted.