<!--
// focus
window.onload = function() {
uk();
}

function uk() {
if (document.getElementById && document.createTextNode)	{
var a = document.getElementsByTagName('a');
for (var i = 0; i < a.length; i++) {
a[i].onfocus = function() {
this.blur();
return false;
}
}
}
}
//
//-->
