var dummyValue=true;var logger=new Object();logger.debug=false;logger.setDebugMode=function(flag){logger.debug=flag;if(flag==true){var id='LOGGER_DEBUG_ID',myDiv=createDiv(id),content='';content+='<table id="LOGGER_DEBUG_CONTENT_TABLE_ID">';content+='<tr><td><h5>Logger</h5></td></tr>';content+='</table>';$2(id,content);$1(id,'block');}};logger.getDebugMode=function(){return logger.debug;};logger.addInfo=function(f,content){if(logger.getDebugMode()==true){var c,max=30;if(content.length > max)c=content.substring(0,max);else c=content;var node=document.getElementById('LOGGER_DEBUG_CONTENT_TABLE_ID');var myTr=document.createElement('tr');var myTd=document.createElement('td');var myText=document.createTextNode(f+': '+c);myTd.appendChild(myText);myTr.appendChild(myTd);if(node!=null){if(node.firstChild!=null && browser.isExplorer())node.firstChild.appendChild(myTr);else node.appendChild(myTr);}}};function dummy(){}  