// -------------------------------------------------// linkrahmen ausblenden// -------------------------------------------------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;// -------------------------------------------------// pop up// -------------------------------------------------function pop (datei){var w=window.open(datei,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=670,height=420, top=200, left=300'); w.focus(); return false;}


//  im HTML-Dokument so zu verlinken:
//  <a href="#" onClick="return pop ('xyz.html')"> zyx </a> 