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

function dynaGoPop( page, name, width, height, yesORno )
{
	var yon		= ( yesORno )? yesORno : 'auto';
	var goPopX	= (screen.width/2) - (width/2);
	var goPopY	= (screen.height/4) - 100;
	var loc		= "left="+goPopX+",top="+goPopY;
	goPopWindow = window.open( page,name,"scrollbars="+yon+",resizable=no,width="+width+",height="+height+","+loc );
}