if (document.all)
	document.writeln('<LINK REL="STYLESHEET" HREF="Common.css" TYPE="text/css">');

function doHighlight ()
{
	var e = window.event.srcElement;
	if (e.tagName == 'IMG') {
		e.style.filter = 'glow(color=red,strength=5)';
		e.filters.glow.enabled = true;
	}
}

function unHighlight ()
{
	var e = window.event.srcElement;
	if (e.tagName == 'IMG') 
		e.filters.glow.enabled = false;
}

document.onmouseover = doHighlight;
document.onmouseout = unHighlight;
