// Utility.js

function cell_OnMouseOver() {
	var oRow = event.srcElement.parentNode;
	//oRow.style.fontWeight = "bold";
	oRow.style.backgroundColor="#D0E1F0";
}

function cell_OnMouseOut() {
	var oRow = event.srcElement.parentNode;
	//oRow.style.fontWeight = "";
	oRow.style.backgroundColor="";
}

function cell_OnClick(strURL, newWindow) {
	if (newWindow == "Y") {
		window.open(strURL, "tscdFundWindow", "width=820, height=600,scrollbars=yes,resizable=yes");
	} else {
		self.location = strURL;
	}
}
