function onMouseOverEvent(id,sImageUrl)
{
		document.getElementById(id).style.backgroundImage="url('"+sImageUrl+"graphics/link_icon.gif')";
		document.getElementById(id).style.textDecoration="underline";
}
	
	
function onMouseOutEvent(id)
{
		document.getElementById(id).style.backgroundImage="";
		document.getElementById(id).style.textDecoration="none";
}
		