function unblur() {

	this.blur();

} 

function blurLinks() {

	if (!document.getElementById) return;

	theLinks = document.getElementsByTagName("A");

	theAreas = document.getElementsByTagName("AREA");

	for(i=0; i<theLinks.length; i++) {theLinks[i].onfocus = unblur;}

	for(i=0; i<theAreas.length; i++) {theAreas[i].onfocus = unblur;}

  } 

//-->blurLinks End