       <!-- hide the code from old browsers that do not support javascript

        /*
           Original: daniusr


             You are welcomed to modify this script to your needs.
          
           This script retrieves the time from the internal system clock, 
           so it is up to you to make sure the time is accurate or correct. 
        */


	function showClock()
{
var clock=new Date();
var hours=clock.getHours();
var minutes=clock.getMinutes();
var seconds=clock.getSeconds();
// for a nice disply we'll add a zero before the numbers between 0 and 9
if (hours<10){
hours="0" + hours;
}
if (minutes<10){
minutes="0" + minutes;
}
if (seconds<10){
seconds="0" + seconds;
}
document.getElementById('showText').innerHTML=hours+":"+minutes+":"+seconds;
t=setTimeout('showClock()',500);
/* setTimeout() JavaScript method is used to call showClock() every 1000 milliseconds (that means exactly 1 second) */
}

// end hiding -->

function DisplayDate()
	{
    var this_month = new Array(12);
    var this_wday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
    this_month[0]  = "January";
    this_month[1]  = "February";
    this_month[2]  = "March";
    this_month[3]  = "April";
    this_month[4]  = "May";
    this_month[5]  = "June";
    this_month[6]  = "July";
    this_month[7]  = "August";
    this_month[8]  = "September";
    this_month[9]  = "October";
    this_month[10] = "November";
    this_month[11] = "December";
    var today = new Date();
    var wday = today.getDay();
    var day   = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900)
	{
        year += 1900;
	}
	document.write( this_month[month]+"&nbsp;"+day+",&nbsp;"+this_wday[wday]+",&nbsp;"+year); 		
}// JavaScript Document
