
    function confirmany(url,msg) {

        var agree=confirm(msg);

        if (agree)

        location.replace(url);

    }

