<!--



function funClock() {

if (!document.layers && !document.all)

return;

var runTime = new Date();

var hours = runTime.getHours();

var minutes = runTime.getMinutes();

var seconds = runTime.getSeconds();

var days = runTime.getDate()

var dn = "AM";

if (hours >= 12) {

dn = "PM";

hours = hours - 12;

}

if (hours == 0) {

hours = 12;

}

if (minutes <= 9) {

minutes = "0" + minutes;

}

if (seconds <= 9) {

seconds = "0" + seconds;

}

movingtime = ""+ hours + ":" + minutes + ":" + seconds + " " + dn + "";

if (document.layers) {

document.layers.clock.document.write(movingtime);

document.layers.clock.document.close();

}

else if (document.all) {

clock.innerHTML = movingtime;

}

setTimeout("funClock()", 1000)

}

window.onload = funClock;



        s_date = new Date();

        var weekDay = "";



        selectMonth = new Array(12);

                selectMonth[0] = "Jan";

                selectMonth[1] = "Feb";

                selectMonth[2] = "Mar";

                selectMonth[3] = "Apr";

                selectMonth[4] = "May";

                selectMonth[5] = "June";

                selectMonth[6] = "July";

                selectMonth[7] = "Aug";

                selectMonth[8] = "Sep";

                selectMonth[9] = "Oct";

                selectMonth[10] = "Nov";

                selectMonth[11] = "Dec";



        if(s_date.getDay() == 1){

                weekDay = "Monday";

        }

        if(s_date.getDay() == 2){

                weekDay = "Tuesday";

        }

        if(s_date.getDay() == 3){

                weekDay = "Wednesday";

        }

        if(s_date.getDay() == 4){

                weekDay = "Thursday";

        }

        if(s_date.getDay() == 5){

                weekDay = "Friday";

        }

        if(s_date.getDay() == 6){

                weekDay = "Saturday";

        }

        if(s_date.getDay() == 7){

                weekDay = "Sunday";

        }

        if(s_date.getDay() == 0){

                weekDay = "Sunday";

        }





        var setYear = s_date.getYear();



 var BName = navigator.appName;



 if(BName == "Netscape"){

         var setYear = s_date.getYear() + 1900;

}



document.write(weekDay + ". " + selectMonth[s_date.getMonth()] + " " +

s_date.getDate() + ", " + setYear);



// -->