
<!--
            var ie = document.all?1:0		// use these variables (ie and n) to check browser
            var n = document.layers?1:0
            var dateNow = new Date();
            var yearNow = dateNow.getYear();


function calcDate() {
	today = new Date();

	// Work out the correct Alphabetic day
	if ( today.getDay() == 1 ) {
		AlphaDay = "Monday";
	} else if ( today.getDay() == 2 ) {
			AlphaDay = "Tuesday";
	} else if ( today.getDay() == 3 ) {
			AlphaDay = "Wednesday";
	} else if ( today.getDay() == 4 ) {
			AlphaDay = "Thursday";
	} else if ( today.getDay() == 5 ) {
			AlphaDay = "Friday";
	} else if ( today.getDay() == 6 ) {
			AlphaDay = "Saturday";
	} else if ( today.getDay() == 0 ) {
			AlphaDay = "Sunday";
	};

	// Add the correct ending to the date eg. rd,th,nd
	TodaysDate = today.getDate();
	if ( TodaysDate < 10 ) {
		AlphaDate = "0" + TodaysDate.toString();
	} else {
		AlphaDate = TodaysDate.toString();
	}
	postfix = "th"
	if ( AlphaDate.charAt(1) == "1" ) {
		if ( AlphaDate.charAt(0) != "1" ) {
			postfix = "st"
		}
	};
	if ( AlphaDate.charAt(1) == "2" ) {
		if ( AlphaDate.charAt(0) != "1" ) {
			postfix = "nd"
		}
	};
	if ( AlphaDate.charAt(1) == "3" ) {
		if ( AlphaDate.charAt(0) != "1" ) {
			postfix = "rd"
		}
	};

	// Calculate the correct Alpha Month
	if ( today.getMonth() == 1 ) {
		AlphaMonth = "February";
	} else if ( today.getMonth() == 2 ) {
			AlphaMonth = "March";
	} else if ( today.getMonth() == 3 ) {
			AlphaMonth = "April";
	} else if ( today.getMonth() == 4 ) {
			AlphaMonth = "May";
	} else if ( today.getMonth() == 5 ) {
			AlphaMonth = "June";
	} else if ( today.getMonth() == 6 ) {
			AlphaMonth = "July";
	} else if ( today.getMonth() == 7 ) {
			AlphaMonth = "August";
	} else if ( today.getMonth() == 8 ) {
			AlphaMonth = "September";
	} else if ( today.getMonth() == 9 ) {
			AlphaMonth = "October";
	} else if ( today.getMonth() == 10 ) {
			AlphaMonth = "November";
	} else if ( today.getMonth() == 11 ) {
			AlphaMonth = "December";
	} else if ( today.getMonth() == 0 ) {
			AlphaMonth = "January";
	};

        // date fix for netscape
	if (!ie) {				
	yearNow = yearNow + 1900;
        }
	
	return ( AlphaDay + " " + today.getDate() + postfix + " " + AlphaMonth + " " +  yearNow);
}
// -->