/**
 * Objeto Consola para debug
 * @author shoto
 */

 
function Console(id){
    this.id = id;   
}

Console.prototype.append = function(msg){
    var container = document.getElementById(this.id);
    if (container) {
        container.innerHTML += msg + "<br/>"
    }
}