var objOldClassName;
		
function GridViewRowMouseOver(element) {
	objOldClassName = element.className;
	element.className = "SelectedRowStyle";
	element.style.cursor = 'pointer';
}

function GridViewRowMouseOut(element) {
	element.className = objOldClassName;
}

function GridViewRowClick(url, target, width, height) {
	window.open(url, target, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + width + ",height=" + height);
}
