// This will remove the IE link frame
<!-- 
	function fixIElinkFrame()
		{
		for (a in document.links) document.links[a].onfocus = document.links[a].blur;
		}
	if (document.all)
		{
		document.onmousedown = fixIElinkFrame;
		}
// -->