:cool; I have the attached piece of javascript on my website homepage: (
[url]http://www.clifflosakgd.com[/url] )

the date advances perfectly but so far have been unable to get the time
(hours, minutes, seconds) to work.

could someone pls check the code and assist me. Thanks in advance.
-C-

<SCRIPT LANGUAGE="JavaScript">
<!--
var the_weekday = new
Array("Sunday","Monday","Tuesday","Wednesday","Thu rsday","Friday","Saturday"); /
/predefine weekday names
var the_month = new
Array("January","February","March","April","May"," June","July","August","Septemb
er","October","November","December"); //predefine month names

var this_date_timestamp=new Date(); // get current day-time stamp

var this_weekday = this_date_timestamp.getDay() // extract weekday
var this_date = this_date_timestamp.getDate() // extract day of month
var this_month = this_date_timestamp.getMonth() // extract month
var this_year = this_date_timestamp.getYear() // extract year

var the_date = new Date();
var the_hour = the_date.getHours();
var the_minute = the_date.getMinutes();
var insec = the_date.getSeconds();

var theday = the_weekday[this_weekday];
var themonth = the_month[this_month];


document.write ("<B><font face=verdana size=1 color=#333333><CENTER>Today is "
+ theday + ", " + themonth + " " + this_date + ", " + 2006+ "<BR>");
document.write ("Your visit is appreciated" + "<BR>");
document.write (' + getHours + ", ' + getMinutes + ", " + getSeconds + "<BR>");
//-->
</SCRIPT>