﻿function overrideAlert()
{
    window.alert = function(p_sMessge)
    {
        Modalbox.alert(p_sMessge);
    }
}

overrideAlert();


