// hightlight a row, passed in is element of row
function highlightRow(elmnt,className) {
	var obj = document.getElementById(elmnt);

	if(obj) {
		obj.className = className;
	}
}

// un-highlight a row.  passed in is row id and a class name
function removehighlightRow(elmnt,className) {
	var obj = document.getElementById(elmnt);
	
	if(obj) {
		obj.className = className;
	}	
}

// this is not used at the moment but tricia would like this maybe added later to allow selecting of a row
function selectRow(elmnt) {
	var obj = document.getElementById(elmnt);

	if(obj) {
		obj.className = 'rowHover';
	}
}

// this is not used at the moment but tricia would like this maybe added later to allow selecting of a row
function removeSelectRow(elmnt,className) {
	var obj = document.getElementById(elmnt);
	
	if(obj) {
		obj.className = className;
	}	
}
