function ablur() {
	var objs = document.body.getElementsByTagName('A');
	for(var x=0; x<objs.length; x++) {
		if(objs[x].href != '') {
			objs[x].onfocus = function(){this.blur()};
		}
	}
}