function detectbrowser() {
	var id=navigator.userAgent;
	if (id.indexOf("MSIE 6")!=-1) { 
		document.write("<link href=\"styles_ie6.css\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />"); 
		}
}

function bluremall(){ 
if(document.getElementsByTagName) { 
	var a = document.getElementsByTagName("a"); 
	for (var i = 0; i < a.length; i++){  
		a[i].onfocus = function(){this.blur();}; 
		} 
	} 
} 

detectbrowser();

window.onload=function() { 
	bluremall(); 
}