














Log = {
log: function () {},

clear : function () {},

expandHTML : function (msg) {},

location : function (loc) {},

trace : function (ttl) {},





assert : function (cond) {
if (! cond) {
var c, msg = ''

if (arguments.length <= 1) {
msg = " ????"
} else {
for (c = 1; c < arguments.length; ++c) {
if (arguments[c]) {
msg += ' '
+ arguments[c].toString()
}
}
}
document.title = "ASSERT ERROR: " + msg
}
},

logObj : function (obj, objName, funcs) {},

timer : function (no, tmttl) {}
}
