if (typeof(window.onload)=='function') var wol_et = window.onload;
var wol_et = null;
window.onload = function(){
  if (wol_et!=null) wol1();
  if (typeof(window.error_list)!='undefined'){
    w = window.open("","Log","width=380,height=200,resizable,scrollbars=yes");
    var e_list = "";
    for(index in window.error_list){
      var err = window.error_list[index];
      e_list = e_list + '<br><b>'+err.errname+'</b> ['+err.errno+']'+'; String: '+err.errstr+'; in <b>'+err.errfile+'</b> in line: <b>'+err.errline+'</b><br>';
    }
    w.document.body.innerHTML = e_list;
    w.focus();
  }
}

