function handleMouseover() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag=="A")	
		//eSrc.style.color = "FF0000";
		eSrc.style.textDecoration = "underline";
}

function handleMouseout() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag=="A")	
		//eSrc.style.color = "";
		eSrc.style.textDecoration = "";
}

document.onmouseover=handleMouseover;
document.onmouseout=handleMouseout;