function ShowClock(){
          now = new Date();
          hour = now.getHours();
          minute = now.getMinutes();
          second = now.getSeconds();
          day = now.getDate();
          month = now.getMonth();
          year = now.getYear();
          var months = new Array("Stycznia","Lutego","Marca","Kwietnia","Maja","Czerwca","Lipca","Sierpnia","Września","Października","Listopada","Grudnia")
          if(hour<=9){
              hour="0"+hour;
          }
          if(minute<=9){
              minute="0"+minute;
          }
          if(second<=9){
              second="0"+second;
          }
          if(month<1){
              month=month+1;
          }
		  nyear = year
          today_date = day+" "+months[month]+" "+(nyear+1900);
          clock = "Dziś "+today_date+"<br />Godzina: "+hour+":"+minute+":"+second;
          document.getElementById("clockForm").innerHTML=clock;
          setTimeout("ShowClock()", 1000);
      }
