  window.onerror = function(){ return true; }
  
  function showTime(){
       var oDate = new Date();
       var oTd = document.all('oTd');
       var strTime = oDate.getFullYear() + 'Äê' + eval(oDate.getMonth()+1) + 'ÔÂ' + oDate.getDate() + 'ÈÕ';
       oTd.innerHTML = strTime;
       window.setTimeout('showTime()',1000);
    }
    window.onload = showTime;