dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
monthName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

now = new Date;

function print_it () {
	document.write('<DIV class=date> ' + dayName[now.getDay()] + " - " + monthName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear() + '&nbsp; &nbsp;</DIV>');
}

if (top.location != self.location) {
	top.location = self.location;
}

ie = document.all?1:0
var isNav6 = ((navigator.appName.indexOf('Netscape') != -1) && (parseFloat(navigator.appVersion) >= 5));

function hL(E){
	if (ie) {
		while (E.tagName!="TR")	{
			E=E.parentElement;
			E.className = "H";
		}
	}
	else if (isNav6) {
		while (E.tagName!="TR") {
			E=E.parentNode;
			E.className = "H";
		}
	}
}

function dL(E){
	if (ie) {
		while (E.tagName!="TR")	{
			E=E.parentElement;
			E.className = "G";
		}
	}
	else if (isNav6) {
		while (E.tagName!="TR") {
			E=E.parentNode;
			E.className = "G";
		}
	}
}