function rowOver(){
   lmnt = window.event.srcElement;
   if (lmnt.tagName.toUpperCase() == 'TABLE')
   return;
   while (lmnt.tagName.toUpperCase() !='TD') 
	lmnt = lmnt.parentElement;
   lmnt.style.background = "#EAEAEA";
}

function rowOut(){
   lmnt = window.event.srcElement;
   if (lmnt.tagName.toUpperCase() == 'TABLE')
   	return;
   while (lmnt.tagName.toUpperCase() !='TD') 
   	lmnt = lmnt.parentElement;
   lmnt.style.background ="#FFFFFF";
}

