var bnappLogEnable = true;

function bnappLog(msg) {
	if (bnappLogEnable) {
		$("#bnapp_log").append(new Date() + ": " + msg).append("<br/>");
	}
}
