function neuesfenster(fenster, url, breite, hoehe)
{
    fenster=window.open(url,fenster,"width="+breite+",height="+hoehe+",channelmode=no,titlebar=no,menubar=no,toolbar=no,location=no,status=no,resizableno=no,scrollbars=no");
    fenster.focus();
}

function UrlRefresh(url)
{ 
	url = url+'&abtselect='+frm_stlbesch.abteilung.options[frm_stlbesch.abteilung.selectedIndex].value;
	location.href=url; 
}

function BlurLinks()
{
	lnks=document.getElementsByTagName('a');
	for(i=0;i<lnks.length;i++){
	  lnks[i].onfocus=new Function("if(this.blur)this.blur()");
	}
}


function FlapContent (id) 
{
	if (document.getElementById("flaptext_" + id).style.display == 'none') 
	{
		document.getElementById("flaptext_" + id).style.display = "block"; 
	}
	else 
	{
		document.getElementById("flaptext_" + id).style.display = "none"; 
	} 
}

//onload=BlurLinks();

