/*
  TABLE ROLLOVER EFECT III
*/

var oldC, oldCbg
function clkIII(src) {
	if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
	}
}

function ovrIII(s, bgc) {
	if (!s.contains(event.fromElement)) {
		oldCbg = s.bgColor;

		s.style.cursor = 'hand';
//		s.style.border = 'solid 1px #a9a9a9';
		s.bgColor = bgc;

		if(s.tagName=='TD'){
			oldC = s.children.tags('A')[0].style.color
			s.children.tags('A')[0].style.textDecoration = "underline";
			s.children.tags('A')[0].style.color = "#000000";
		}
	  
	}
}

function outIII(s) {
	if (!s.contains(event.toElement)) {
		s.style.cursor = 'default';
//		s.style.border = 'solid 1px #f0f0f0';
		s.bgColor = oldCbg;

		if(s.tagName=='TD'){
			s.children.tags('A')[0].style.textDecoration = "none";
			s.children.tags('A')[0].style.color = oldC;
		}
	}
}

/*
  END OF TABLE ROLLOVER EFECT III
*/
