﻿if (window.console == undefined) {

    window.console = {
        log: function () {
            alert(arguments[0]);
        },
        info: function () { this.log(arguments[0]); },
        error: function () { this.log(arguments[0]); }
    };

};


