function blurlnk(){
if(document.getElementsByTagName){
var a = document.getElementsByTagName("a");
var button = document.getElementsByTagName("button");
  for(var i=0;i<a.length;i++){
		a[i].onfocus = function() { 
					this.blur()
					};
					}
	for(var i=0;i<button.length;i++){
		button[i].onfocus = function() { 
					this.blur()
					};
					}
		}
}
function open_popup(url,width,height) {
			if (url) {
				if(!width){
						width=615;
						}
				if(!height){
						height=617;
						}
					imagine = window.open(url, "_blank","width="+width+",height="+height+",scrollbars=yes,resizable=yes");
					if (imagine.opener == null)
					imagine.opener = window;

				imagine.focus();
			}
			return;
		}
