﻿var vn="Microsoft Internet Explorer";
var some;
if(navigator.appName!=vn)
some=1900;
else
some=0;

function montharr(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11)
{
this[0] = m0;
this[1] = m1;
this[2] = m2;
this[3] = m3;
this[4] = m4;
this[5] = m5;
this[6] = m6;
this[7] = m7;
this[8] = m8;
this[9] = m9;
this[10] = m10;
this[11] = m11;
}

function calendar()
{
var monthNames = "JanFebMarAprMayJunJulAugSepOctNovDec";
var today = new Date();
var thisDay;
var monthDays = new montharr(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
year = today.getYear();
thisDay = today.getDate();
if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monthDays[1] = 29;
nDays = monthDays[today.getMonth()];
firstDay = today;
firstDay.setDate(1); // works fine for most systems
testMe = firstDay.getDate();
if (testMe == 2) firstDay.setDate(0);
startDay = firstDay.getDay();
document.write('<table border="0" cellspacing="0" cellpadding="1" align="CENTER" bgcolor="#0080FF"><TR><TD><table width="173"  height="180" border="0" cellspacing="1" cellpadding="2" bgcolor="Silver">');
document.write('<TR><th colspan="7" bgcolor="#C8E3FF">');
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monthNames = new Array("1","2","3","4","5","6","7","8","9","10","11","12");
var now = new Date();
document.write("<font style=font-size:9pt;Color:#330099>" ,  now.getYear() + some , "/" , " " , monthNames[now.getMonth()] , "/" , " " , now.getDate() , "" , " " , dayNames[now.getDay()] , "</FONT>");
document.writeln('</TH></TR><TR><TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">S</FONT></TH>');
document.writeln('<th bgcolor="#0080FF"><font style="font-size:9pt;Color:White">M</FONT></TH>');
document.writeln('<TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">T</FONT></TH>');
document.writeln('<TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">W</FONT></TH>');
document.writeln('<TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">T</FONT></TH>');
document.writeln('<TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">F</FONT></TH>');
document.writeln('<TH BGCOLOR="#0080FF"><font style="font-size:9pt;Color:White">S</FONT></TH>');
document.writeln("</TR><TR>");
column = 0;
for (i=0; i<startDay; i++)
{
document.writeln("\n<TD><FONT style=font-size:9pt>&nbsp;</FONT></TD>");
column++;
}

//The day which is having the speacial format.

for (i=1; i<=nDays; i++)
{
if (i == thisDay)
{
document.writeln('</TD><td align="CENTER" bgcolor="#FF8040"><FONT style=font-size:9pt;Color:#ffffff><B>')
}

//holiday
else if (i==1||i==3||i==4||i==11||i==12||i==13||i==14||i==15||i==16||i==17||i==18||i==19||i==20||i==21||i==22||i==23||i==24||i==25||i==26||i==27||i==28||i==29||i==30||i==31)
{
document.writeln('</TD><td align="CENTER" bgcolor="#FEE8D1"><FONT style=font-size:9pt;Color:#000000><B>')
} 


/*
else if (i==9||i==18||i==30)
{
document.writeln('</TD><td align="CENTER" bgcolor="#ffffff"><FONT style=font-size:9pt;Color:#000000><B><U>')
}
*/
else
{
document.writeln('</TD><TD BGCOLOR="#FFFFFF" ALIGN="CENTER"><FONT style=font-size:9pt;font-family:Arial;font-weight:bold;Color:#330066>');
}
document.writeln(i);
if (i == thisDay) document.writeln("</FONT></TD>")
column++;
if (column == 7)
{
document.writeln("<TR>"); 
column = 0;
}
}


//Define DAY 1 to DAY 6 in the calender

//Define DAY 1

if (thisDay==2)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 2
else if (thisDay==5)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 3
else if (thisDay==6)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 4
else if (thisDay==7)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 5
else if (thisDay==8)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 6
else if (thisDay==9)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define DAY 7
else if (thisDay==10)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff>  after exam activities </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Define Holidays
else if (thisDay==12||thisDay==13||thisDay==14||thisDay==15||thisDay==16||thisDay==17||thisDay==18||thisDay==19||thisDay==20||thisDay==21||thisDay==22||thisDay==23||thisDay==24||thisDay==25||thisDay==26||thisDay==27||thisDay==28||thisDay==29||thisDay==30||thisDay==31)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff> Summer Holiday </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

else if (thisDay==1)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff> SAR Establishment  </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

else if (thisDay==4||thisDay==5||thisDay==11)
{
document.writeln('<TR><td colspan="7" align="CENTER" height="18" bgcolor="#0080FF"><FONT style=font-size:9pt;Color:#ffffff> Non-School Day </FONT></TD></TR></TABLE></TD></TR></TABLE>');
}

//Other Day 
/*

*/
}
var timerID = null;
var timerRunning = false;
function stopclock ()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}


function showtime()
{
var now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var seconds = now.getSeconds()
var timeValue = ""
if(hours>=1 && hours <4)
{timeValue += ("凌晨")}
if(hours>=4 && hours<6)
{timeValue += ("清晨")}
if(hours>=6 && hours<9)
{timeValue += ("早上")}
if(hours>=9 && hours<12)
{timeValue += ("上午")}
if(hours>=12 && hours<13)
{timeValue += ("中午")}
if(hours>=13 && hours<18)
{timeValue += ("下午")}
if(hours>=18 && hours <19)
{timeValue += ("傍晚")}
if(hours>=19 && hours <24)
{timeValue += ("晚上")}
if(hours<1)
{timeValue += ("午夜")}
timeValue += ((hours > 12) ? hours - 12 : hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
document.clock.face.value = timeValue
timerID = setTimeout("showtime()",1000)
timerRunning = true
}
