
<!--
//
// Mindseer's Basic Date Script Version 1.0
//
// By: Mindseer          Created:07/15/1999
//
// Copyright 1999 - Mindseer (mindseer@ix.netcom.com)
//
//
// DESCRIPTION:
// -----------
//
// This date script will show the day, time, and year
// adding the correct suffix after the date (nd, rd, st, th) 
// this script will also put a 0 in front of dates containing
// a single digit.
// 
// This script will work in either Netscape or Internet Explorer.
// Netscape currently has a problem showing the date after the year
// 2000. This script is fully Y2K compliant in Internet Explorer.
//
// Feel free to use this code provided that you leave this 
// notice as is !!!
//
 

	var now = new Date();





	var dName = now.getDay() + 1;

	var Day = "";



	   if(dName==1) Day = "Sunday";

	   if(dName==2) Day = "Monday";

	   if(dName==3) Day = "Tuesday";

	   if(dName==4) Day = "Wednesday";

	   if(dName==5) Day = "Thursday";

	   if(dName==6) Day = "Friday";

	   if(dName==7) Day = "Saturday";



	var DayOfWeek =(" "  + Day + ", ");



	var yr = now.getYear();

	   if(yr<100) yr1 = "19"; 

	   if(yr>100) yr1 = "";

	var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();

	   if(dayNr==1) dayNr = "1"; 

	   if(dayNr==2) dayNr = "2";

	   if(dayNr==3) dayNr = "3";

	   if(dayNr==4) dayNr = "4";

	   if(dayNr==5) dayNr = "5";

	   if(dayNr==6) dayNr = "6";

	   if(dayNr==7) dayNr = "7";

	   if(dayNr==8) dayNr = "8";

	   if(dayNr==9) dayNr = "9";

	   if(dayNr==1) ext = "<sup>st</sup>"; 

	   if(dayNr==2) ext = "<sup>nd</sup>";

	   if(dayNr==3) ext = "<sup>rd</sup>";

	   if(dayNr==4) ext = "<sup>th</sup>";

	   if(dayNr==5) ext = "<sup>th</sup>";

	   if(dayNr==6) ext = "<sup>th</sup>";

	   if(dayNr==7) ext = "<sup>th</sup>";

	   if(dayNr==8) ext = "<sup>th</sup>";

	   if(dayNr==9) ext = "<sup>th</sup>";

	   if(dayNr==10) ext = "<sup>th</sup>";

	   if(dayNr==11) ext = "<sup>th</sup>";

	   if(dayNr==12) ext = "<sup>th</sup>";

	   if(dayNr==13) ext = "<sup>th</sup>";

	   if(dayNr==14) ext = "<sup>th</sup>";

	   if(dayNr==15) ext = "<sup>th</sup>";

	   if(dayNr==16) ext = "<sup>th</sup>";

	   if(dayNr==17) ext = "<sup>th</sup>";

	   if(dayNr==18) ext = "<sup>th</sup>";

	   if(dayNr==19) ext = "<sup>th</sup>";

	   if(dayNr==20) ext = "<sup>th</sup>";

	   if(dayNr==21) ext = "<sup>st</sup>";

	   if(dayNr==22) ext = "<sup>nd</sup>";

	   if(dayNr==23) ext = "<sup>rd</sup>";

	   if(dayNr==24) ext = "<sup>th</sup>";

	   if(dayNr==25) ext = "<sup>th</sup>";

	   if(dayNr==26) ext = "<sup>th</sup>";

	   if(dayNr==27) ext = "<sup>th</sup>";

	   if(dayNr==28) ext = "<sup>th</sup>";

	   if(dayNr==29) ext = "<sup>th</sup>";

	   if(dayNr==30) ext = "<sup>th</sup>";

	   if(dayNr==31) ext = "<sup>st</sup>";
	
               var Month = "";

	var mName = now.getMonth() + 1;

	   if(mName==1) Month="January";

	   if(mName==2) Month="February";

	   if(mName==3) Month="March";

	   if(mName==4) Month="April";

	   if(mName==5) Month="May";

	   if(mName==6) Month="June";

	   if(mName==7) Month="July";

	   if(mName==8) Month="August";

	   if(mName==9) Month="September";

	   if(mName==10) Month="October";

	   if(mName==11) Month="November";

	   if(mName==12) Month="December";



	

	var MonthDayYear =(" " + Month  + " " + dayNr + ext + " "  + yr1 +  "");



   // Displays the month, day, & year.



   	document.writeln(DayOfWeek + " " + MonthDayYear + "\n");



// Deactivate Cloaking -->

