function datetime()
{
var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
dston =  new Date('April 4, 1999 2:59:59');
dstoff = new Date('october 31, 1999 2:59:59');
var myzone = newdate.getTimezoneOffset();
newtime=newdate.getTime();
var zone = 6;  // references your time zone

if (newdate > dston && newdate < dstoff ) {
zonea = zone - 1 ;
dst = "  Pacific Daylight Savings Time";
}
else {
zonea = zone ; dst = "  Pacific Standard Time";
}
var newzone = (zonea*60*60*1000);
newtimea = newtime+(myzone*60*1000)-newzone;
mydate.setTime(newtimea);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
myyear= mydate.getYear();
year = myyear;

if (year < 2000)
year = year + 1900;
/*
myhours = mydate.getHours();
if (myhours >= 12) {
myhours = (myhours == 12) ? 12 : myhours - 12; mm = " PM";
}
else {
myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
}
myminutes = mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};

*/





arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
armonth = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ")
ardate = new Array("0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31");
// rename locale as needed.

//var time = ("In Dallas, Texas, it is: " + myhours + mytime+ mm + ", " + arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year+", " + dst +".");

//var time = (""+arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year+", " + dst +"."+"" + myhours + mytime+ mm + ", " + );
var d = new Date();
var t_hour = d.getHours();     // Returns hours
var t_min = d.getMinutes();    // Returns minutes
var t_sec = d.getSeconds();
var greet="";
if(t_min<10)
{
	t_min="0"+t_min;
}
if (t_hour<=6) {greet="Good night!"}
if (t_hour>6 && t_hour<=11) {greet="Good morning!"}
if (t_hour>=12 && t_hour<=18) {greet="Good afternoon!"}
if (t_hour>18 && t_hour<=24) {greet="Good evening!"}

//myhours = mydate.getHours();
if (t_hour >= 12) {
t_hour = (t_hour == 12) ? 12 : t_hour - 12; mm = " PM";
}
else {
t_hour = (t_hour == 0) ? 12 : t_hour; mm = " AM";
}
/*myminutes = mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
*/
var time = (" It's "  + arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year+", " +t_hour +" : "+ t_min+" "+ mm +".");
document.write (greet);
document.write(time);
}
