function BlurLinks(){
	links=document.getElementsByTagName('a');
	for(i=0;i<links.length;i++){
		links[i].onfocus=new Function("if(!this.blur) this.blur()");
	}
}
function showPageRW(seite,xwidth,xheight,scroll) {
	window.open(seite,"","menubar=0, scrollbars="+scroll+", width="+xwidth+", height="+xheight+",left=500 top=50")
}

var flashed=false;

function flashlink(){
	var o=document.getElementById('flink');

	if(flashed){
		o.style.color='#ffffff';
		flashed=false;
	}else{
		o.style.color='#007C26';
		flashed=true;
	}

	if(flashed){
		var rnd=250;
	}else{
		var rnd=Math.floor(Math.random() * 3000)+500
	}
	setTimeout("flashlink()",rnd);
}

