function Year_Month(){ 
    var now = new Date(); 
    var yy = now.getYear(); 
    var mm = now.getMonth()+1; 
    var cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
    return(cl +  yy + ' Y ' + mm + ' M </font>'); }
 function Date_of_Today(){ 
    var now = new Date(); 
    var cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
    return(cl +  now.getDate() +  ' D </font>'); }
 function Day_of_Today(){ 
    var day = new Array(); 
    day[0] = "Sun"; 
    day[1] = "Mon"; 
    day[2] = "Tues"; 
    day[3] = "Wednes"; 
    day[4] = "Thurs"; 
    day[5] = "Fri"; 
    day[6] = "Satur"; 
    var now = new Date(); 
    var cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
    if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
    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(); 
}
document.write('<font id="calendarClock1" style="color:#ffFFFF;font-family:ËÎÌå;font-size:9pt;line-height:120%"> </font>');
document.write('<font id="calendarClock2" style="color:#ffFFFF;font-family:ËÎÌå;font-size:9pt;line-height:120%"></font>');
document.write('&nbsp;')
document.write('<font id="calendarClock3" style="color:#ffFFFF;font-family:ËÎÌå;font-¨¡size:9pt;line-height:90%"> </font>');
document.write('&nbsp;')
document.write('<font id="calendarClock4" style="color:#ffFFFF;font-family:ËÎÌå;font-size:9pt;line-height:120%"></font>');
setInterval('refreshCalendarClock()',1000);
