	function rollover(what) {
		what.style.backgroundColor = '#ECEFF5';
		what.style.color = '#000000';
	}

	function rollout(what) {
		what.style.backgroundColor = '#ffffff';
		what.style.color = '#000000';
	}
	function surfto(what) {
		this.location = what;
	}
	function potd(URL) {
		day = new Date();
		id = day.getTime();
		dh = screen.height;
		dw = screen.width;
		h = 600;
		w = 800;
		t = (dh - h)/2;
		l = (dw - w)/2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,titlebar=0,resizable=0,width=" + w + ",height=" + h + ",left= " + l + ",top=" + t + "');");
	}
	function memberPopUp(URL) {
		day = new Date();
		id = day.getTime();
		dh = screen.height;
		dw = screen.width;
		h = 480;
		w = 600;
		t = (dh - h)/2;
		l = (dw - w)/2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left= " + l + ",top=" + t + "');");
	}
