function showClock()
{
 DateText = "";
 Now = new Date();
 Year = Now.getFullYear();
 Month = Now.getMonth();
 Dates = Now.getDate();
 Hour = Now.getHours();
 Minutes = Now.getMinutes();

 if (Month == 0) { Month = "January"; }
 if (Month == 1) { Month = "February"; }
 if (Month == 2) { Month = "March"; }
 if (Month == 3) { Month = "April"; }
 if (Month == 4) { Month = "May"; }
 if (Month == 5) { Month = "June"; }
 if (Month == 6) { Month = "July"; }
 if (Month == 7) { Month = "August"; }
 if (Month == 8) { Month = "September"; }
 if (Month == 9) { Month = "October"; }
 if (Month == 10) { Month = "November"; }
 if (Month == 11) { Month = "December"; }

 if (Hour<10)
  Hour = "0" + Hour;

 if (Minutes<10)
  Minutes = "0" + Minutes;

 DateText = Dates+" "+Month+" "+Year;
 TimeText = Hour+":"+Minutes;

 if (document.all)
  time.innerHTML = TimeText+" - "+DateText;
 else if (document.getElementById)
  document.getElementById("time").innerHTML=TimeText+" - "+DateText;

 setTimeout("showClock()",1000);
}

