//Blur Links
function blurLinks(){
	lnks=document.getElementsByTagName('a');
	for(i=0;i<lnks.length;i++){
		lnks[i].onfocus=new Function("this.blur()");
	}
}

//Pop-Up
function openWindow (url) {
	fenster = window.open("/content/"+url, "popup", "width=513,height=500,status=yes,scrollbars=yes,resizable=yes");
	fenster.focus();
}

//Pop-Up Image
function openImage (url, width, height) {
	fenster = window.open("/showImage.php?img="+url, "popupImage", "width="+width+",height="+height+",status=no,scrollbars=no,resizable=no");
	fenster.focus();
}

