// aus frame befreien
if (top != self) top.location = self.location;

window.onload = function()
{
// link mit id="bla" fokussieren
var toFocus = document.getElementById(window.location.hash.substr(1));
	if (toFocus)
		toFocus.focus();
// beim loesen der maustaste rahmen um link entfernen
 for(i=0;i<document.links.length;i++) 
	{
	document.links[i].onmouseup=function() 
		{
		if(this.blur) 
			{
			this.blur();
			}
		}
	}
}