/*open new defined window*/

function opener(ort,w,h,l,t) {
var e=(screen.availWidth/2)-(800/2); y=(screen.availHeight/2)-(600/2);
window.open(ort,'opener','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h+',screenX='+e+',screenY='+e+',left='+e+',top='+e+'');
}

/*blurAnchors*/

 function blurAnchors()
	{  
		if(document.getElementsByTagName)
		{    
			var a = document.getElementsByTagName("a"); 
			for(var i = 0; i < a.length; i++)
			{ 
				a[i].onfocus = function(){
					this.blur()
				}; 
			} 
		}
	}
	
	window.onload = blurAnchors;




