var highlightDay;

if (!isIE()) {
	document.write("<style>#calendar td {border-width:2px;border-color:white}</style>");
}

function dayOnClick(day, month, year) {
	location = "/viewReminder.do?day=" + day + "&month=" + month + "&year=" + year;
}

function doSkipMonth(direction) {
	var frm = d.frmDate;
	frm.skipMonth.value = direction;
	frm.submit();
}

function docMouseMove(evt) {
	if (highlightDay) {
		var o = getElement(evt);
		if (o.nodeName == "TD") {
			o.style.borderColor='blue';
		}
	}
}

function docMouseOut(evt) {
	if (highlightDay) {
		var o = getElement(evt);
		if (o.nodeName == "TD") {
			o.style.borderColor=isIE() ? 'transparent' : 'white';
		}
	}
}

d.onmousemove=docMouseMove;
d.onmouseout=docMouseOut;