//javascript
function OnMouseOver(src,last)
{
	src.style.color="#085194";
	src.style.fontFamily="Arial";
	src.style.fontSize="11px";
	src.style.fontWeight="bold";
	if (last == true) {	
		src.style.textDecoration="none"; }
	else { src.style.textDecoration="underline";}
}
function OnMouseOut(src,last)
{
	src.style.color="#085194";
	src.style.fontFamily="Arial";
	src.style.fontSize="11px";
	src.style.fontWeight="bold";
	if (last == true) {	
		src.style.textDecoration="none"; }
	else { src.style.textDecoration="underline";}
}

