function onRowOver(thisObj,mycolor) {
	thisObj.style.backgroundColor=mycolor;
}

function onRowOut(thisObj) {
	thisObj.style.backgroundColor='';
}