Function Year_Month () {
Var now = new date ();
Var yy = now.getYear ();
VAR mm = now.getmonth () 1;
VAR CL = ';
IF (now.getday () == 0) CL = '';
IF (now.getday () == 6) CL = '';
Return (Cl YY 'Year' mm "month font> ');
Function date_of_toDay () {
Var now = new date ();
VAR CL = '';
IF (now.getday () == 0) CL = '';
IF (now.getday () == 6) CL = '';
Return (CL now.getdate () ' font>');
Function day_of_toDay () {
Var day = new array ();
Day [0] = "Sunday";
Day [1] = "Monday";
Day [2] = "Tuesday";
Day [3] = "Wednesday";
Day [4] = "Thursday";
Day [5] = "Friday";
Day [6] = "Saturday";
Var now = new date ();
VAR CL = ';
IF (now.getday () == 0) CL = '';
IF (now.getday () == 6) CL = '';
Return (CL day [now.getday ()] ' font>');
Function CurentTime () {
Var now = new date ();
Var hh = now.gethours ();
VAR mm = now.getminutes ();
Var ss = now.gettime ()% 60000;
SS = (SS - (SS% 1000)) / 1000;
VAR clock = hh ':';
IF (mm <10) clock = '0';
Clock = mm ':'; IF (SS <10) Clock = '0';
Clock = SS;
Return (Clock);
Function refreshcalendarClock () {
Document.all.calendarClock1.innerhtml = year_month ();
Document.all.calendarClock2.innerhtml = DATE_OF_TODAY ();
Document.all.calendarclock3.innerhtml = day_of_today ();
Document.All.calendarClock4.innerhtml = CurentTime ();
Var WebURL = WebURL;
Document.write ('