//--------------TIME-------------
document.write('<font color="#F87217">')
document.write('<b>')
if(navigator.appName == "Netscape") {
document.write('<layer id="clock" top="0"></layer><br>');
}
if (navigator.appVersion.indexOf("MSIE") != -1){
document.write('<span id="clock" style="top:10px"></span>');
}
var incr=0;
function upclock(){
//var dte = new Date("8/30/2002 4:55:05 PM");
var dte = new Date();
dte.setTime(dte.getTime() + (incr * 1000));
var hrs = dte.getHours();
var min = dte.getMinutes();
var sec = dte.getSeconds();
if (hrs==0) hrs=0;
if (hrs<=9) hrs="0"+hrs;
if (min<=9) min="0"+min;
if (sec<=9) sec="0"+sec;
//incr++;
if(navigator.appName == "Netscape") {
document.clock.document.write('Time:'+ hrs+':'+min+':'+sec);
document.clock.document.close();
}
if (navigator.appVersion.indexOf("MSIE") != -1){
clock.innerHTML = 'Time: '+ hrs+':'+min+':'+sec;
}
}
setInterval("upclock()",1000);
document.write ('</font>');




theDate =new Date();
date = theDate.getDate();
month = theDate.getMonth();
year = theDate.getYear();

DaysofWeek = new Array()

  DaysofWeek[0]="Sunday"
  DaysofWeek[1]="Monday"
  DaysofWeek[2]="Tuesday"
  DaysofWeek[3]="Wednesday"
  DaysofWeek[4]="Thursday"
  DaysofWeek[5]="Friday"
  DaysofWeek[6]="Saturday"
var wkday;

wkday=theDate.getDay();
if(navigator.appName == "Netscape") {

	if(theDate.getDay()==0)

		wkday=6

//	else
//		wkday=wkday-1;
}
var day = DaysofWeek[wkday];
var cmonth ;
switch(month)
{
case 0:
cmonth = "Jan";
break;
case 1:
cmonth = "Feb";
break;
case 2:
cmonth = "March";
break;
case 3:
cmonth = "April";
break;
case 4:
cmonth = "May";
break;
case 5:
cmonth = "June";
break;
case 6:
cmonth = "July";
break;
case 7:
cmonth = "August";
break;
case 8:
cmonth = "Sept";
break;
case 9:
cmonth = "Oct";
break;
case 10:
cmonth = "Nov";
break;
case 11:
cmonth = "Dec";
break;
}
document.write('<font color="#F87217">')
document.write('<b>')
document.write ('&nbsp/ Date: '+ date," ",cmonth," ",year);
document.write ('</font>');
